diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-12-02 03:29:24 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-12-02 03:29:24 +0100 |
commit | bba8975a9c2fdfac4dcda5babb290eab869739e8 (patch) | |
tree | 748e943f3ba09c05382b8bd926dc9a438bfcfeb0 /libavcodec/h264_ps.c | |
parent | fab5973fa58a28debd9d7c8c9a89369676c07944 (diff) | |
download | ffmpeg-bba8975a9c2fdfac4dcda5babb290eab869739e8.tar.gz |
Be less verbose when skipping RBSP data in H264 PPS.
Fixes ticket #693.
Diffstat (limited to 'libavcodec/h264_ps.c')
-rw-r--r-- | 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 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; } |