Browse Source

avcodec/h264_ps: Show VUI and SPS overread messages just once per frame thread

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.3
Michael Niedermayer 6 years ago
parent
commit
d9751a1162
2 changed files with 4 additions and 1 deletions
  1. +2
    -1
      libavcodec/h264_ps.c
  2. +2
    -0
      libavcodec/h264_ps.h

+ 2
- 1
libavcodec/h264_ps.c View File

@@ -579,7 +579,8 @@ int ff_h264_decode_seq_parameter_set(GetBitContext *gb, AVCodecContext *avctx,
}

if (get_bits_left(gb) < 0) {
av_log(avctx, ignore_truncation ? AV_LOG_WARNING : AV_LOG_ERROR,
av_log_once(avctx, ignore_truncation ? AV_LOG_WARNING : AV_LOG_ERROR, AV_LOG_DEBUG,
&ps->overread_warning_printed[sps->vui_parameters_present_flag],
"Overread %s by %d bits\n", sps->vui_parameters_present_flag ? "VUI" : "SPS", -get_bits_left(gb));
if (!ignore_truncation)
goto fail;


+ 2
- 0
libavcodec/h264_ps.h View File

@@ -144,6 +144,8 @@ typedef struct H264ParamSets {
/* currently active parameters sets */
const PPS *pps;
const SPS *sps;

int overread_warning_printed[2];
} H264ParamSets;

/**


Loading…
Cancel
Save