Commit 28f2db96 authored by Baptiste Coudurier's avatar Baptiste Coudurier

fix typo, ALT_BITSTREAM_WRITER_LE does not exist

Originally committed as revision 20692 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 94f28061
...@@ -270,7 +270,7 @@ static void av_unused put_bits32(PutBitContext *s, uint32_t value) ...@@ -270,7 +270,7 @@ static void av_unused put_bits32(PutBitContext *s, uint32_t value)
{ {
int lo = value & 0xffff; int lo = value & 0xffff;
int hi = value >> 16; int hi = value >> 16;
#ifdef ALT_BITSTREAM_WRITER_LE #ifdef BITSTREAM_WRITER_LE
put_bits(s, 16, lo); put_bits(s, 16, lo);
put_bits(s, 16, hi); put_bits(s, 16, hi);
#else #else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment