Browse Source

avcodec/hevc_parser: very minor simplification in hevc_parse()

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.1
Michael Niedermayer 7 years ago
parent
commit
449b1dcd7d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/hevc_parser.c

+ 1
- 1
libavcodec/hevc_parser.c View File

@@ -315,7 +315,7 @@ static int hevc_parse(AVCodecParserContext *s, AVCodecContext *avctx,
}
}

is_dummy_buf = (is_dummy_buf && (dummy_buf == buf));
is_dummy_buf &= (dummy_buf == buf);

if (!is_dummy_buf)
parse_nal_units(s, buf, buf_size, avctx);


Loading…
Cancel
Save