diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-07-13 21:59:58 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-07-13 21:59:58 +0000 |
commit | 89129c6b1d1a451a940faf97ddee912ddf54139f (patch) | |
tree | 6f0095d0ba335902c4b039ed30d8f6154bf674a6 /ffmpeg.c | |
parent | 4c453ddbbccf3cdd611107e33bd21c9c76c94561 (diff) | |
download | ffmpeg-89129c6b1d1a451a940faf97ddee912ddf54139f.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |