From bba8975a9c2fdfac4dcda5babb290eab869739e8 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Fri, 2 Dec 2011 03:29:24 +0100 Subject: [PATCH] Be less verbose when skipping RBSP data in H264 PPS. Fixes ticket #693. --- libavcodec/h264_ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c index b3ebd4d510..3184cadb21 100644 --- a/libavcodec/h264_ps.c +++ b/libavcodec/h264_ps.c @@ -492,7 +492,7 @@ static int more_rbsp_data_in_pps(H264Context *h, PPS *pps) if ((profile_idc == 66 || profile_idc == 77 || profile_idc == 88) && (sps->constraint_set_flags & 7)) { - av_log(h->s.avctx, AV_LOG_WARNING, + av_log(h->s.avctx, AV_LOG_VERBOSE, "Current profile doesn't provide more RBSP data in PPS, skipping\n"); return 0; }