[FFmpeg-cvslog] Be more verbose about H264 cropping errors.
Carl Eugen Hoyos
git at videolan.org
Mon Aug 22 17:05:32 CEST 2011
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Mon Aug 22 16:58:35 2011 +0200| [5b71ae2b653a48062c73530130d628f6225cf0cf] | committer: Carl Eugen Hoyos
Be more verbose about H264 cropping errors.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5b71ae2b653a48062c73530130d628f6225cf0cf
---
libavcodec/h264_ps.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c
index 3c7b04a..fa99372 100644
--- a/libavcodec/h264_ps.c
+++ b/libavcodec/h264_ps.c
@@ -403,10 +403,10 @@ int ff_h264_decode_seq_parameter_set(H264Context *h){
sps->crop_top = get_ue_golomb(&s->gb);
sps->crop_bottom= get_ue_golomb(&s->gb);
if(sps->crop_left || sps->crop_top){
- av_log(h->s.avctx, AV_LOG_ERROR, "insane cropping not completely supported, this could look slightly wrong ...\n");
+ av_log(h->s.avctx, AV_LOG_ERROR, "insane cropping not completely supported, this could look slightly wrong ... (left: %d, top: %d)\n", sps->crop_left, sps->crop_top);
}
if(sps->crop_right >= crop_horizontal_limit || sps->crop_bottom >= crop_vertical_limit){
- av_log(h->s.avctx, AV_LOG_ERROR, "brainfart cropping not supported, this could look slightly wrong ...\n");
+ av_log(h->s.avctx, AV_LOG_ERROR, "brainfart cropping not supported, this could look slightly wrong ... (right: %d, bottom: %d)\n", sps->crop_right, sps->crop_bottom);
}
}else{
sps->crop_left =
More information about the ffmpeg-cvslog
mailing list