diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-02-18 11:31:28 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-02-18 11:31:28 +0100 |
commit | 360218713f0da84b8a7f5658eeed61e23e9ce3ef (patch) | |
tree | d2bfdcd5eff8f57a9acbc3b1ec39d03f93f56e13 /libavfilter/vf_aspect.c | |
parent | c9ac08277daf6a1895b5a93a27874a605f15309e (diff) | |
download | ffmpeg-360218713f0da84b8a7f5658eeed61e23e9ce3ef.tar.gz |
lavfi/aspect: show log info even in case no argument is provided to setdar/setsar
Diffstat (limited to 'libavfilter/vf_aspect.c')
-rw-r--r-- | libavfilter/vf_aspect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_aspect.c b/libavfilter/vf_aspect.c index 9b07de9372..7c4014a5a2 100644 --- a/libavfilter/vf_aspect.c +++ b/libavfilter/vf_aspect.c @@ -43,9 +43,9 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) "Invalid string '%s' for aspect ratio.\n", args); return ret; } - - av_log(ctx, AV_LOG_INFO, "a:%d/%d\n", aspect->ratio.num, aspect->ratio.den); } + + av_log(ctx, AV_LOG_INFO, "a:%d/%d\n", aspect->ratio.num, aspect->ratio.den); return 0; } |