remove unnecessary shift

Originally committed as revision 11424 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ivo van Poorten 2008-01-05 22:10:00 +00:00
parent cfec09e914
commit 6a5ef2934c
1 changed files with 1 additions and 1 deletions

View File

@ -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");