diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-10-02 12:21:13 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-10-05 22:05:21 +0200 |
commit | ca3dea8a36f15d551ad9b95d7cccee5a9ef23010 (patch) | |
tree | 918f7f7961b2abe90b3389fe3c435f0d62fbd33a /libavcodec/mpegvideo.h | |
parent | 49b4ed7237489a08e7b992e4be6ccf6ee055d043 (diff) | |
download | ffmpeg-ca3dea8a36f15d551ad9b95d7cccee5a9ef23010.tar.gz |
avcodec/h263dec, mpeg4videodec: Parse extradata during init
Possible now that the IDCT is already initialized at this point.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 55828e6102..d7c2f57682 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -114,7 +114,6 @@ typedef struct MpegEncContext { int input_picture_number; ///< used to set pic->display_picture_number, should not be used for/by anything else int coded_picture_number; ///< used to set pic->coded_picture_number, should not be used for/by anything else int picture_number; //FIXME remove, unclear definition - int extradata_parsed; int picture_in_gop_number; ///< 0-> first pic in gop, ... int mb_width, mb_height; ///< number of MBs horizontally & vertically int mb_stride; ///< mb_width+1 used for some arrays to allow simple addressing of left & top MBs without sig11 |