From 28f2db9670da1fd060b7a10ff7e5349842051d00 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Tue, 1 Dec 2009 22:35:25 +0000 Subject: fix typo, ALT_BITSTREAM_WRITER_LE does not exist Originally committed as revision 20692 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/put_bits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/put_bits.h') diff --git a/libavcodec/put_bits.h b/libavcodec/put_bits.h index 5f9811e8fc..8a94a09b48 100644 --- a/libavcodec/put_bits.h +++ b/libavcodec/put_bits.h @@ -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 -- cgit v1.2.3