comparison h264.h @ 5756:db5a041fd77c libavcodec

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
author andoma
date Tue, 02 Oct 2007 14:35:20 +0000
parents b45894d869da
children 32b404ec4c19
comparison
equal deleted inserted replaced
5755:b45894d869da 5756:db5a041fd77c
149 /** 149 /**
150 * Memory management control operation. 150 * Memory management control operation.
151 */ 151 */
152 typedef struct MMCO{ 152 typedef struct MMCO{
153 MMCOOpcode opcode; 153 MMCOOpcode opcode;
154 int short_frame_num; 154 int short_pic_num; ///< pic_num without wrapping (pic_num & max_pic_num)
155 int long_index; 155 int long_arg; ///< index, pic_num, or num long refs depending on opcode
156 } MMCO; 156 } MMCO;
157 157
158 /** 158 /**
159 * H264Context 159 * H264Context
160 */ 160 */