summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-19 22:09:08 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-19 22:09:08 +0000
commitcea9642014e833799eca40db03530ed0002f99d8 (patch)
tree98106d94c464ea0bf7da573ab1e9e853c8db2419 /ffplay.c
parenta56dcc57931fd19ef0d567ac60bc3973103f9890 (diff)
Fix ;;
Originally committed as revision 12153 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index 1cfb54d976..915c257103 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -657,7 +657,7 @@ static void video_image_display(VideoState *is)
aspect_ratio = 0;
else
aspect_ratio = av_q2d(is->video_st->codec->sample_aspect_ratio)
- * is->video_st->codec->width / is->video_st->codec->height;;
+ * is->video_st->codec->width / is->video_st->codec->height;
if (aspect_ratio <= 0.0)
aspect_ratio = (float)is->video_st->codec->width /
(float)is->video_st->codec->height;