comparison mpegvideo.h @ 9085:a199529ef171 libavcodec

small spelling/grammar fixes
author diego
date Mon, 02 Mar 2009 05:41:55 +0000
parents f49b1c1d2c16
children cecf81f93756
comparison
equal deleted inserted replaced
9084:0d39a5203bf0 9085:a199529ef171
598 int gop_picture_number; ///< index of the first picture of a GOP based on fake_pic_num & mpeg1 specific 598 int gop_picture_number; ///< index of the first picture of a GOP based on fake_pic_num & mpeg1 specific
599 int last_mv_dir; ///< last mv_dir, used for b frame encoding 599 int last_mv_dir; ///< last mv_dir, used for b frame encoding
600 int broken_link; ///< no_output_of_prior_pics_flag 600 int broken_link; ///< no_output_of_prior_pics_flag
601 uint8_t *vbv_delay_ptr; ///< pointer to vbv_delay in the bitstream 601 uint8_t *vbv_delay_ptr; ///< pointer to vbv_delay in the bitstream
602 602
603 /* MPEG2 specific - I wish I had not to support this mess. */ 603 /* MPEG-2-specific - I wished not to have to support this mess. */
604 int progressive_sequence; 604 int progressive_sequence;
605 int mpeg_f_code[2][2]; 605 int mpeg_f_code[2][2];
606 int picture_structure; 606 int picture_structure;
607 /* picture type */ 607 /* picture type */
608 #define PICT_TOP_FIELD 1 608 #define PICT_TOP_FIELD 1
633 633
634 /* RTP specific */ 634 /* RTP specific */
635 int rtp_mode; 635 int rtp_mode;
636 636
637 uint8_t *ptr_lastgob; 637 uint8_t *ptr_lastgob;
638 int swap_uv;//vcr2 codec is mpeg2 varint with UV swaped 638 int swap_uv; //vcr2 codec is an MPEG-2 variant with U and V swapped
639 DCTELEM (*pblocks[12])[64]; 639 DCTELEM (*pblocks[12])[64];
640 640
641 DCTELEM (*block)[64]; ///< points to one of the following blocks 641 DCTELEM (*block)[64]; ///< points to one of the following blocks
642 DCTELEM (*blocks)[8][64]; // for HQ mode we need to keep the best block 642 DCTELEM (*blocks)[8][64]; // for HQ mode we need to keep the best block
643 int (*decode_mb)(struct MpegEncContext *s, DCTELEM block[6][64]); // used by some codecs to avoid a switch() 643 int (*decode_mb)(struct MpegEncContext *s, DCTELEM block[6][64]); // used by some codecs to avoid a switch()