comparison ituh263enc.c @ 12024:fdafbcef52f5 libavcodec

Fix grammar errors in documentation
author mru
date Wed, 30 Jun 2010 15:38:06 +0000
parents 7dd2a45249a9
children
comparison
equal deleted inserted replaced
12023:c7455450364d 12024:fdafbcef52f5
82 11, 12, 13, 14, 1, 21, 20, 18, 82 11, 12, 13, 14, 1, 21, 20, 18,
83 19, 2, 1, 34, 35, 36 83 19, 2, 1, 34, 35, 36
84 }; 84 };
85 85
86 /** 86 /**
87 * Returns the 4 bit value that specifies the given aspect ratio. 87 * Return the 4 bit value that specifies the given aspect ratio.
88 * This may be one of the standard aspect ratios or it specifies 88 * This may be one of the standard aspect ratios or it specifies
89 * that the aspect will be stored explicitly later. 89 * that the aspect will be stored explicitly later.
90 */ 90 */
91 av_const int ff_h263_aspect_to_info(AVRational aspect){ 91 av_const int ff_h263_aspect_to_info(AVRational aspect){
92 int i; 92 int i;
243 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; 243 s->c_dc_scale_table= ff_mpeg1_dc_scale_table;
244 } 244 }
245 } 245 }
246 246
247 /** 247 /**
248 * Encodes a group of blocks header. 248 * Encode a group of blocks header.
249 */ 249 */
250 void h263_encode_gob_header(MpegEncContext * s, int mb_line) 250 void h263_encode_gob_header(MpegEncContext * s, int mb_line)
251 { 251 {
252 put_bits(&s->pb, 17, 1); /* GBSC */ 252 put_bits(&s->pb, 17, 1); /* GBSC */
253 253