1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

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
This commit is contained in:
Roman Shaposhnik 2003-04-08 09:56:19 +00:00 committed by Michael Niedermayer
parent ce9fce63c5
commit 3e2937bef3

View File

@ -104,7 +104,7 @@ static AVInputFormat dv_iformat = {
.extensions = "dv", .extensions = "dv",
}; };
#if 0
int dv_write_header(struct AVFormatContext *s) int dv_write_header(struct AVFormatContext *s)
{ {
return 0; return 0;
@ -136,11 +136,10 @@ AVOutputFormat dv_oformat = {
dv_write_packet, dv_write_packet,
dv_write_trailer, dv_write_trailer,
}; };
#endif
int dv_init(void) int dv_init(void)
{ {
av_register_input_format(&dv_iformat); av_register_input_format(&dv_iformat);
// av_register_output_format(&dv_oformat); av_register_output_format(&dv_oformat);
return 0; return 0;
} }