Commit 3e2937be authored by Roman Shaposhnik's avatar Roman Shaposhnik Committed by Michael Niedermayer

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
parent ce9fce63
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment