[FFmpeg-cvslog] setdar: prefer "sar" over "par" in log info message
Stefano Sabatini
git at videolan.org
Sun Mar 27 17:11:40 CEST 2011
ffmpeg | branch: master | Stefano Sabatini <stefano.sabatini-lala at poste.it> | Sat Mar 26 15:49:07 2011 +0100| [3ea031b3f2bcbf867cf00211684d0f2ea4931c50] | committer: Stefano Sabatini
setdar: prefer "sar" over "par" in log info message
This is more consistent with the terminology adopted by the aspect
filter names.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3ea031b3f2bcbf867cf00211684d0f2ea4931c50
---
libavfilter/vf_aspect.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavfilter/vf_aspect.c b/libavfilter/vf_aspect.c
index 95bfb66..95900d1 100644
--- a/libavfilter/vf_aspect.c
+++ b/libavfilter/vf_aspect.c
@@ -80,7 +80,7 @@ static int setdar_config_props(AVFilterLink *inlink)
aspect->aspect.num * inlink->h,
aspect->aspect.den * inlink->w, 100);
- av_log(inlink->dst, AV_LOG_INFO, "w:%d h:%d -> dar:%d/%d par:%d/%d\n",
+ av_log(inlink->dst, AV_LOG_INFO, "w:%d h:%d -> dar:%d/%d sar:%d/%d\n",
inlink->w, inlink->h, dar.num, dar.den, aspect->aspect.num, aspect->aspect.den);
inlink->sample_aspect_ratio = aspect->aspect;
More information about the ffmpeg-cvslog
mailing list