diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2004-03-24 06:32:57 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2004-03-24 06:32:57 +0000 |
commit | 490c735d1b04a6e5b8ce4b66c43898183b36fb33 (patch) | |
tree | 0c8448b5fda44aa596bf51a34c8179a637e74ef8 /libavformat | |
parent | cb6e87c15ac448a64a41871d58ebb7aa88da183e (diff) | |
download | ffmpeg-490c735d1b04a6e5b8ce4b66c43898183b36fb33.tar.gz |
* turns out raw DV files can have .dif extension
Originally committed as revision 2921 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/dv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c index 7a1f5a48a9..58a70b023c 100644 --- a/libavformat/dv.c +++ b/libavformat/dv.c @@ -921,7 +921,7 @@ static AVInputFormat dv_iformat = { dv_read_packet, dv_read_close, dv_read_seek, - .extensions = "dv", + .extensions = "dv,dif", }; static AVOutputFormat dv_oformat = { |