[FFmpeg-cvslog] Be less verbose when skipping RBSP data in H264 PPS.

Carl Eugen Hoyos git at videolan.org
Fri Dec 2 03:37:38 CET 2011


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Fri Dec  2 03:29:24 2011 +0100| [bba8975a9c2fdfac4dcda5babb290eab869739e8] | committer: Carl Eugen Hoyos

Be less verbose when skipping RBSP data in H264 PPS.

Fixes ticket #693.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bba8975a9c2fdfac4dcda5babb290eab869739e8
---

 libavcodec/h264_ps.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c
index b3ebd4d..3184cad 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;
     }



More information about the ffmpeg-cvslog mailing list