diff options
author | Jeff Downs <heydowns@borg.com> | 2007-10-02 14:35:20 +0000 |
---|---|---|
committer | Andreas Ă–man <andreas@lonelycoder.com> | 2007-10-02 14:35:20 +0000 |
commit | 0d0447eae09dca047412a03d64ac2bfc11a80d35 (patch) | |
tree | abe6127ec4a0003711f29f91720a67f4493b1121 /libavcodec/h264.h | |
parent | bcc3476c984ad3e74757205aa8e6bcf8716aac08 (diff) | |
download | ffmpeg-0d0447eae09dca047412a03d64ac2bfc11a80d35.tar.gz |
Rename MMCO stuff to prepare for h264/PAFF implementation.
patch by Jeff Downs, heydowns a borg d com
original thread:
Subject: [FFmpeg-devel] [PATCH] Implement PAFF in H.264
Date: 18/09/07 20:30
Originally committed as revision 10646 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 0fd28ad632..0081e7392e 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -151,8 +151,8 @@ typedef enum MMCOOpcode{ */ typedef struct MMCO{ MMCOOpcode opcode; - int short_frame_num; - int long_index; + int short_pic_num; ///< pic_num without wrapping (pic_num & max_pic_num) + int long_arg; ///< index, pic_num, or num long refs depending on opcode } MMCO; /** |