comparison h264.h @ 9831:febe1855b64a libavcodec

Add field prev_interlaced_frame to H264Context to be able to flag soft telecine progressive. Patch by Haruhiko Yamagata, h D yamagata A nifty D com
author cehoyos
date Tue, 09 Jun 2009 21:16:40 +0000
parents 828d15d322ed
children 46a247e54d6e
comparison
equal deleted inserted replaced
9830:bd0879f752e6 9831:febe1855b64a
502 * pic_struct in picture timing SEI message 502 * pic_struct in picture timing SEI message
503 */ 503 */
504 SEI_PicStructType sei_pic_struct; 504 SEI_PicStructType sei_pic_struct;
505 505
506 /** 506 /**
507 * Complement sei_pic_struct
508 * SEI_PIC_STRUCT_TOP_BOTTOM and SEI_PIC_STRUCT_BOTTOM_TOP indicate interlaced frames.
509 * However, soft telecined frames may have these values.
510 * This is used in an attempt to flag soft telecine progressive.
511 */
512 int prev_interlaced_frame;
513
514 /**
507 * Bit set of clock types for fields/frames in picture timing SEI message. 515 * Bit set of clock types for fields/frames in picture timing SEI message.
508 * For each found ct_type, appropriate bit is set (e.g., bit 1 for 516 * For each found ct_type, appropriate bit is set (e.g., bit 1 for
509 * interlaced). 517 * interlaced).
510 */ 518 */
511 int sei_ct_type; 519 int sei_ct_type;