[SCM] libav/experimental: fix typo, ALT_BITSTREAM_WRITER_LE does not exist

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:55:19 UTC 2013


The following commit has been merged in the experimental branch:
commit 28f2db9670da1fd060b7a10ff7e5349842051d00
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date:   Tue Dec 1 22:35:25 2009 +0000

    fix typo, ALT_BITSTREAM_WRITER_LE does not exist
    
    Originally committed as revision 20692 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/put_bits.h b/libavcodec/put_bits.h
index 5f9811e..8a94a09 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

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list