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
pull/126/head
Roman Shaposhnik 22 years ago committed by Michael Niedermayer
parent ce9fce63c5
commit 3e2937bef3
  1. 5
      libavformat/dv.c

@ -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;
} }

Loading…
Cancel
Save