Commit 4881594f authored by michaelni's avatar michaelni

dv file format support patch by (Roman Shaposhnick <rvs at sun dot com>)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1742 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5bc5d0a3
......@@ -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