comparison h264.h @ 11791:51abd780bda6 libavcodec

Cleanup prev commit, flag variable should start with 0
author hyc
date Fri, 28 May 2010 20:14:14 +0000
parents f918fb753b31
children fdafbcef52f5
comparison
equal deleted inserted replaced
11790:f918fb753b31 11791:51abd780bda6
462 /** 462 /**
463 * Used to parse AVC variant of h264 463 * Used to parse AVC variant of h264
464 */ 464 */
465 int is_avc; ///< this flag is != 0 if codec is avc1 465 int is_avc; ///< this flag is != 0 if codec is avc1
466 int nal_length_size; ///< Number of bytes used for nal length (1, 2 or 4) 466 int nal_length_size; ///< Number of bytes used for nal length (1, 2 or 4)
467 467 int got_first; ///< this flag is != 0 if we've parsed a frame
468 int first_picture; 468
469 SPS *sps_buffers[MAX_SPS_COUNT]; 469 SPS *sps_buffers[MAX_SPS_COUNT];
470 PPS *pps_buffers[MAX_PPS_COUNT]; 470 PPS *pps_buffers[MAX_PPS_COUNT];
471 471
472 int dequant_coeff_pps; ///< reinit tables when pps changes 472 int dequant_coeff_pps; ///< reinit tables when pps changes
473 473