Commit a42d8ce8 authored by ivo's avatar ivo

remove unnecessary shift


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