This field hasn't been used to return the output frame size since avcodec_decode_audio3() was removed.
Signed-off-by: James Almer <jamr...@gmail.com> --- libavcodec/codec.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/codec.h b/libavcodec/codec.h index 3d7a1f4c26..bcda061da1 100644 --- a/libavcodec/codec.h +++ b/libavcodec/codec.h @@ -281,7 +281,8 @@ typedef struct AVCodec { */ int (*encode2)(struct AVCodecContext *avctx, struct AVPacket *avpkt, const struct AVFrame *frame, int *got_packet_ptr); - int (*decode)(struct AVCodecContext *, void *outdata, int *outdata_size, struct AVPacket *avpkt); + int (*decode)(struct AVCodecContext *, void *outdata, int *got_frame_ptr, + struct AVPacket *avpkt); int (*close)(struct AVCodecContext *); /** * Encode API with decoupled frame/packet dataflow. This function is called -- 2.30.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".