summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-07-13 21:59:58 +0000
committerDiego Biurrun <diego@biurrun.de>2008-07-13 21:59:58 +0000
commit89129c6b1d1a451a940faf97ddee912ddf54139f (patch)
tree6f0095d0ba335902c4b039ed30d8f6154bf674a6 /ffmpeg.c
parent4c453ddbbccf3cdd611107e33bd21c9c76c94561 (diff)
Drop non-C99-compliant initialization.
Originally committed as revision 14224 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 4d77405677..bce341313c 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -112,7 +112,7 @@ static int frame_bottomBand = 0;
static int frame_leftBand = 0;
static int frame_rightBand = 0;
static int max_frames[4] = {INT_MAX, INT_MAX, INT_MAX, INT_MAX};
-static AVRational frame_rate = (AVRational) {0,0};
+static AVRational frame_rate;
static float video_qscale = 0;
static uint16_t *intra_matrix = NULL;
static uint16_t *inter_matrix = NULL;