diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-10-08 01:44:47 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-12 11:36:09 +0200 |
commit | 59422955cf381cb6e9990ea541eeb71736717783 (patch) | |
tree | de827726c5df60a53f0267e18be0b5ff3a0f94ab /libavcodec/mpegvideo.h | |
parent | 2dfe7c1e404dcc64293cd5cf6dd02013ced5d539 (diff) | |
download | ffmpeg-59422955cf381cb6e9990ea541eeb71736717783.tar.gz |
avcodec/mpegpicture: Rename Picture->MPVPicture
Picture is just too generic.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 3150f337c0..6d96376a6e 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -128,9 +128,9 @@ typedef struct MpegEncContext { int mb_num; ///< number of MBs of a picture ptrdiff_t linesize; ///< line size, in bytes, may be different from width ptrdiff_t uvlinesize; ///< line size, for chroma in bytes, may be different from width - Picture *picture; ///< main picture buffer - Picture **input_picture; ///< next pictures on display order for encoding - Picture **reordered_input_picture; ///< pointer to the next pictures in coded order for encoding + MPVPicture *picture; ///< main picture buffer + MPVPicture **input_picture;///< next pictures on display order for encoding + MPVPicture **reordered_input_picture; ///< pointer to the next pictures in coded order for encoding BufferPoolContext buffer_pools; @@ -156,13 +156,13 @@ typedef struct MpegEncContext { * copy of the previous picture structure. * note, linesize & data, might not match the previous picture (for field pictures) */ - Picture last_pic; + MPVPicture last_pic; /** * copy of the next picture structure. * note, linesize & data, might not match the next picture (for field pictures) */ - Picture next_pic; + MPVPicture next_pic; /** * Reference to the source picture for encoding. @@ -174,11 +174,11 @@ typedef struct MpegEncContext { * copy of the current picture structure. * note, linesize & data, might not match the current picture (for field pictures) */ - Picture cur_pic; ///< buffer to store the decompressed current picture + MPVPicture cur_pic; - Picture *last_pic_ptr; ///< pointer to the previous picture. - Picture *next_pic_ptr; ///< pointer to the next picture (for bidir pred) - Picture *cur_pic_ptr; ///< pointer to the current picture + MPVPicture *last_pic_ptr; ///< pointer to the previous picture. + MPVPicture *next_pic_ptr; ///< pointer to the next picture (for bidir pred) + MPVPicture *cur_pic_ptr; ///< pointer to the current picture int skipped_last_frame; int last_dc[3]; ///< last DC values for MPEG-1 int16_t *dc_val_base; |