diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-08-17 15:35:42 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-08-17 15:35:42 +0200 |
commit | f056fc2c6ce73267c7fcb15f1aad2c2109813fee (patch) | |
tree | 637604263fabd9d84073e1f1ac7710ec0b8a35b2 /ffmpeg.c | |
parent | 91e209d720abf9f2851dc606859ab83c405591b1 (diff) | |
download | ffmpeg-f056fc2c6ce73267c7fcb15f1aad2c2109813fee.tar.gz |
ffmpeg: remove unsed variable nopts
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -695,7 +695,6 @@ static int read_avserver_streams(AVFormatContext *s, const char *filename) { int i, err; AVFormatContext *ic = NULL; - int nopts = 0; err = avformat_open_input(&ic, filename, NULL, NULL); if (err < 0) @@ -726,9 +725,6 @@ static int read_avserver_streams(AVFormatContext *s, const char *filename) } else choose_pixel_fmt(st, codec); } - - if(st->codec->flags & CODEC_FLAG_BITEXACT) - nopts = 1; } av_close_input_file(ic); |