[FFmpeg-cvslog] swresample/swresample: Print used int_sample_fmt
Michael Niedermayer
git at videolan.org
Sun Jun 21 19:36:03 CEST 2015
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Jun 21 18:08:19 2015 +0200| [5de3a589f16e2899aaf4a09e550027319f6e76ac] | committer: Michael Niedermayer
swresample/swresample: Print used int_sample_fmt
Suggested-by: wm4
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5de3a589f16e2899aaf4a09e550027319f6e76ac
---
libswresample/swresample.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libswresample/swresample.c b/libswresample/swresample.c
index 5a43371..0fb3de6 100644
--- a/libswresample/swresample.c
+++ b/libswresample/swresample.c
@@ -226,10 +226,10 @@ av_cold int swr_init(struct SwrContext *s){
}else if(av_get_planar_sample_fmt(s->in_sample_fmt) <= AV_SAMPLE_FMT_FLTP){
s->int_sample_fmt= AV_SAMPLE_FMT_FLTP;
}else{
- av_log(s, AV_LOG_DEBUG, "Using double precision mode\n");
s->int_sample_fmt= AV_SAMPLE_FMT_DBLP;
}
}
+ av_log(s, AV_LOG_DEBUG, "Using %s internally between filters\n", av_get_sample_fmt_name(s->int_sample_fmt));
if( s->int_sample_fmt != AV_SAMPLE_FMT_S16P
&&s->int_sample_fmt != AV_SAMPLE_FMT_S32P
More information about the ffmpeg-cvslog
mailing list