diff beosaudio.cpp @ 1167:d89d7ef290da libavformat

give AVInput/OutputFormat structs consistent names
author mru
date Sun, 09 Jul 2006 23:40:53 +0000
parents edbe5c3717f9
children 0899bfe4105c
line wrap: on
line diff
--- a/beosaudio.cpp	Sun Jul 09 10:33:49 2006 +0000
+++ b/beosaudio.cpp	Sun Jul 09 23:40:53 2006 +0000
@@ -419,7 +419,7 @@
     return 0;
 }
 
-static AVInputFormat audio_in_format = {
+static AVInputFormat audio_demuxer = {
     "audio_device",
     "audio grab and output",
     sizeof(AudioData),
@@ -431,7 +431,7 @@
     AVFMT_NOFILE,
 };
 
-AVOutputFormat audio_out_format = {
+AVOutputFormat audio_muxer = {
     "audio_device",
     "audio grab and output",
     "",
@@ -454,8 +454,8 @@
 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;
 }