diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2003-04-08 09:56:19 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-04-08 09:56:19 +0000 |
commit | 3e2937bef36c266daf553194fcb70041a80295c6 (patch) | |
tree | e3dae16e26fdd4e5f2544e79b1884fc85b4f5630 /libavformat/dv.c | |
parent | ce9fce63c5d6a43ce585211930273ec69bb6bee1 (diff) | |
download | ffmpeg-3e2937bef36c266daf553194fcb70041a80295c6.tar.gz |
dv file format support patch by (Roman Shaposhnick <rvs at sun dot com>)
Originally committed as revision 1742 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dv.c')
-rw-r--r-- | libavformat/dv.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c index aee2279131..1577c8dcaa 100644 --- a/libavformat/dv.c +++ b/libavformat/dv.c @@ -104,7 +104,7 @@ static AVInputFormat dv_iformat = { .extensions = "dv", }; -#if 0 + int dv_write_header(struct AVFormatContext *s) { return 0; @@ -136,11 +136,10 @@ AVOutputFormat dv_oformat = { dv_write_packet, dv_write_trailer, }; -#endif int dv_init(void) { av_register_input_format(&dv_iformat); - // av_register_output_format(&dv_oformat); + av_register_output_format(&dv_oformat); return 0; } |