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/beosaudio.cpp | |
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/beosaudio.cpp')
-rw-r--r-- | libavformat/beosaudio.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/beosaudio.cpp b/libavformat/beosaudio.cpp index 35591d005a..273cbd660a 100644 --- a/libavformat/beosaudio.cpp +++ b/libavformat/beosaudio.cpp @@ -419,7 +419,7 @@ static int audio_read_close(AVFormatContext *s1) return 0; } -static AVInputFormat audio_in_format = { +static AVInputFormat audio_demuxer = { "audio_device", "audio grab and output", sizeof(AudioData), @@ -431,7 +431,7 @@ static AVInputFormat audio_in_format = { AVFMT_NOFILE, }; -AVOutputFormat audio_out_format = { +AVOutputFormat audio_muxer = { "audio_device", "audio grab and output", "", @@ -454,8 +454,8 @@ extern "C" { int audio_init(void) { main_thid = find_thread(NULL); - av_register_input_format(&audio_in_format); - av_register_output_format(&audio_out_format); + av_register_input_format(&audio_demuxer); + av_register_output_format(&audio_muxer); return 0; } |