diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-04-02 23:08:23 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-04-02 23:08:23 +0000 |
commit | 18590be6550c31299e047726b5e04cc3fae8806c (patch) | |
tree | f1060babef96ae1dc186928f67722ee103d0b806 /ffmpeg.c | |
parent | ff273ddae7c2f683715ff7e44ac9b8d1e1b93d8e (diff) | |
download | ffmpeg-18590be6550c31299e047726b5e04cc3fae8806c.tar.gz |
Use AVDISCARD_DEFAULT for 0 where appropriate.
Originally committed as revision 22787 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
@@ -2988,7 +2988,7 @@ static void opt_input_file(const char *filename) }else{ found=1; for(j=0; j<p->nb_stream_indexes; j++){ - ic->streams[p->stream_index[j]]->discard= 0; + ic->streams[p->stream_index[j]]->discard= AVDISCARD_DEFAULT; } } } |