diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-09 23:40:53 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-09 23:40:53 +0000 |
commit | d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch) | |
tree | 859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/asf-enc.c | |
parent | 21227514de650da3de297acce893175230f04beb (diff) | |
download | ffmpeg-d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a.tar.gz |
give AVInput/OutputFormat structs consistent names
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf-enc.c')
-rw-r--r-- | libavformat/asf-enc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/asf-enc.c b/libavformat/asf-enc.c index cca441b165..670e5a9d81 100644 --- a/libavformat/asf-enc.c +++ b/libavformat/asf-enc.c @@ -823,7 +823,7 @@ static int asf_write_trailer(AVFormatContext *s) return 0; } -AVOutputFormat asf_oformat = { +AVOutputFormat asf_muxer = { "asf", "asf format", "video/x-ms-asf", @@ -841,7 +841,7 @@ AVOutputFormat asf_oformat = { .flags = AVFMT_GLOBALHEADER, }; -AVOutputFormat asf_stream_oformat = { +AVOutputFormat asf_stream_muxer = { "asf_stream", "asf format", "video/x-ms-asf", |