comparison qdm2.c @ 12024:fdafbcef52f5 libavcodec

Fix grammar errors in documentation
author mru
date Wed, 30 Jun 2010 15:38:06 +0000
parents 7dd2a45249a9
children c69dd071f7d4
comparison
equal deleted inserted replaced
12023:c7455450364d 12024:fdafbcef52f5
383 return (uint16_t)(value & 0xffff); 383 return (uint16_t)(value & 0xffff);
384 } 384 }
385 385
386 386
387 /** 387 /**
388 * Fills a QDM2SubPacket structure with packet type, size, and data pointer. 388 * Fill a QDM2SubPacket structure with packet type, size, and data pointer.
389 * 389 *
390 * @param gb bitreader context 390 * @param gb bitreader context
391 * @param sub_packet packet under analysis 391 * @param sub_packet packet under analysis
392 */ 392 */
393 static void qdm2_decode_sub_packet_header (GetBitContext *gb, QDM2SubPacket *sub_packet) 393 static void qdm2_decode_sub_packet_header (GetBitContext *gb, QDM2SubPacket *sub_packet)
434 return NULL; 434 return NULL;
435 } 435 }
436 436
437 437
438 /** 438 /**
439 * Replaces 8 elements with their average value. 439 * Replace 8 elements with their average value.
440 * Called by qdm2_decode_superblock before starting subblock decoding. 440 * Called by qdm2_decode_superblock before starting subblock decoding.
441 * 441 *
442 * @param q context 442 * @param q context
443 */ 443 */
444 static void average_quantized_coeffs (QDM2Context *q) 444 static void average_quantized_coeffs (QDM2Context *q)