Commit 6a5ef293 authored by Ivo van Poorten's avatar Ivo van Poorten

remove unnecessary shift

Originally committed as revision 11424 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent cfec09e9
......@@ -73,7 +73,7 @@ static int pva_read_packet(AVFormatContext *s, AVPacket *pkt) {
flags = get_byte(pb);
length = get_be16(pb);
pts_flag = (flags & 0x10) >> 4;
pts_flag = flags & 0x10;
if (syncword != PVA_MAGIC) {
av_log(s, AV_LOG_ERROR, "invalid syncword\n");
......
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