aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-14 23:40:14 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-12-11 00:49:26 +0100
commitdad5b9560a5cf3f34ddbc1df1a8a18b07b0d24ac (patch)
tree9990e25ba105cecdc29d823c0374302a990b7418
parent41bcde6021272fd82deb46da102c4971c90e662f (diff)
downloadffmpeg-dad5b9560a5cf3f34ddbc1df1a8a18b07b0d24ac.tar.gz
ffplay: Prevent 0/0 aspect from being passed on to lavfi
0/0 fails to be parsed Fixes Ticket1814 Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit a63d7213b3eb96a35fdf34b05f45e5675107d8f9)
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index 2337fe0d27..83bfd4e216 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1617,7 +1617,7 @@ static int configure_video_filters(AVFilterGraph *graph, VideoState *is, const c
"video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:pixel_aspect=%d/%d",
codec->width, codec->height, codec->pix_fmt,
is->video_st->time_base.num, is->video_st->time_base.den,
- codec->sample_aspect_ratio.num, codec->sample_aspect_ratio.den);
+ codec->sample_aspect_ratio.num, FFMAX(codec->sample_aspect_ratio.den, 1));
if ((ret = avfilter_graph_create_filter(&filt_src,
avfilter_get_by_name("buffer"),