summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-11-07 08:35:08 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-11-09 15:44:17 +0100
commit945b2dcc631a891fcc8c911891fd6730a40b8248 (patch)
treefde7555f0ef968ca51d299d49d75144e6b7ab2c9 /libavformat
parentddd701fbbf71a85711bbb1fc52f5de86cdca1261 (diff)
avformat/hls_sample_encryption: Fix precedence
Fixes Coverity ticket #1492869. Reviewed-by: Steven Liu <lingjiujianke@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/hls_sample_encryption.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hls_sample_encryption.c b/libavformat/hls_sample_encryption.c
index 396fe97921..38795c7fb0 100644
--- a/libavformat/hls_sample_encryption.c
+++ b/libavformat/hls_sample_encryption.c
@@ -268,7 +268,7 @@ static int get_next_adts_frame(CodecParserContext *ctx, AudioFrame *frame)
/* Find next sync word 0xFFF */
while (ctx->buf_ptr < ctx->buf_end - 1) {
- if (*ctx->buf_ptr == 0xFF && *(ctx->buf_ptr + 1) & 0xF0 == 0xF0)
+ if (*ctx->buf_ptr == 0xFF && (*(ctx->buf_ptr + 1) & 0xF0) == 0xF0)
break;
ctx->buf_ptr++;
}