comparison get_bits.h @ 11197:87bcae769ee7 libavcodec

get_bits: Fix spelling and grammar in GET_VLC() comment.
author alexc
date Wed, 17 Feb 2010 21:20:43 +0000
parents 9bd48e510bef
children cd8a77473dd1
comparison
equal deleted inserted replaced
11196:4f3503b0dc07 11197:87bcae769ee7
549 } 549 }
550 550
551 551
552 /** 552 /**
553 * 553 *
554 * if the vlc code is invalid and max_depth=1 than no bits will be removed 554 * If the vlc code is invalid and max_depth=1, then no bits will be removed.
555 * if the vlc code is invalid and max_depth>1 than the number of bits removed 555 * If the vlc code is invalid and max_depth>1, then the number of bits removed
556 * is undefined 556 * is undefined.
557 */ 557 */
558 #define GET_VLC(code, name, gb, table, bits, max_depth)\ 558 #define GET_VLC(code, name, gb, table, bits, max_depth)\
559 {\ 559 {\
560 int n, nb_bits;\ 560 int n, nb_bits;\
561 unsigned int index;\ 561 unsigned int index;\