[SCM] libav/experimental: useless &0x80

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:55:18 UTC 2013


The following commit has been merged in the experimental branch:
commit b586d9eac3dc0f62db06e1eb28374690ef310275
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Sun Jan 21 22:46:14 2007 +0000

    useless &0x80
    
    Originally committed as revision 7631 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/asf.c b/libavformat/asf.c
index a182023..6b60dd6 100644
--- a/libavformat/asf.c
+++ b/libavformat/asf.c
@@ -571,7 +571,7 @@ static int asf_read_packet(AVFormatContext *s, AVPacket *pkt)
             int num = get_byte(pb);
             asf->packet_segments--;
             rsize++;
-            asf->packet_key_frame = (num & 0x80) >> 7;
+            asf->packet_key_frame = num >> 7;
             asf->stream_index = asf->asfid2avid[num & 0x7f];
             // sequence should be ignored!
             DO_2BITS(asf->packet_property >> 4, asf->packet_seq, 0);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list