mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
94f28061f5
commit
28f2db9670
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue