diff tta.c @ 1167:d89d7ef290da libavformat

give AVInput/OutputFormat structs consistent names
author mru
date Sun, 09 Jul 2006 23:40:53 +0000
parents 40e81416015d
children d18cc9a1fd02
line wrap: on
line diff
--- a/tta.c	Sun Jul 09 10:33:49 2006 +0000
+++ b/tta.c	Sun Jul 09 23:40:53 2006 +0000
@@ -139,7 +139,7 @@
     return 0;
 }
 
-AVInputFormat tta_iformat = {
+AVInputFormat tta_demuxer = {
     "tta",
     "true-audio",
     sizeof(TTAContext),
@@ -152,6 +152,6 @@
 
 int tta_init(void)
 {
-    av_register_input_format(&tta_iformat);
+    av_register_input_format(&tta_demuxer);
     return 0;
 }