Commit 9a9ddb57 authored by michael's avatar michael

useless &0x80


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7631 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f4df8fa6
......@@ -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);
......
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