fix typo, ALT_BITSTREAM_WRITER_LE does not exist

Originally committed as revision 20692 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2009-12-01 22:35:25 +00:00
parent 94f28061f5
commit 28f2db9670
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ static void av_unused put_bits32(PutBitContext *s, uint32_t value)
{
int lo = value & 0xffff;
int hi = value >> 16;
#ifdef ALT_BITSTREAM_WRITER_LE
#ifdef BITSTREAM_WRITER_LE
put_bits(s, 16, lo);
put_bits(s, 16, hi);
#else