diff mbox series

[FFmpeg-devel] avformat/hls_sample_encryption: Fix precedence

Message ID AM7PR03MB6660799D27AD7B31B43AE0B58F909@AM7PR03MB6660.eurprd03.prod.outlook.com
State Accepted
Commit 945b2dcc631a891fcc8c911891fd6730a40b8248
Headers show
Series [FFmpeg-devel] avformat/hls_sample_encryption: Fix precedence | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished
andriy/make_ppc success Make finished
andriy/make_fate_ppc success Make fate finished

Commit Message

Andreas Rheinhardt Nov. 7, 2021, 7:57 a.m. UTC
Fixes Coverity ticket #1492869.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavformat/hls_sample_encryption.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Steven Liu Nov. 8, 2021, 2:24 a.m. UTC | #1
Andreas Rheinhardt <andreas.rheinhardt@outlook.com> 于2021年11月7日周日 下午3:57写道:
>
> Fixes Coverity ticket #1492869.
>
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
>  libavformat/hls_sample_encryption.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> 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++;
>      }
> --
> 2.30.2
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".


LGTM

Thanks
Steven
diff mbox series

Patch

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++;
     }