mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
remove unnecessary shift
Originally committed as revision 11424 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
+1
-1
@@ -73,7 +73,7 @@ static int pva_read_packet(AVFormatContext *s, AVPacket *pkt) {
|
|||||||
flags = get_byte(pb);
|
flags = get_byte(pb);
|
||||||
length = get_be16(pb);
|
length = get_be16(pb);
|
||||||
|
|
||||||
pts_flag = (flags & 0x10) >> 4;
|
pts_flag = flags & 0x10;
|
||||||
|
|
||||||
if (syncword != PVA_MAGIC) {
|
if (syncword != PVA_MAGIC) {
|
||||||
av_log(s, AV_LOG_ERROR, "invalid syncword\n");
|
av_log(s, AV_LOG_ERROR, "invalid syncword\n");
|
||||||
|
|||||||
Reference in New Issue
Block a user