changeset 4027:7c3e9286ce14

10l to Ivan
author arpi
date Mon, 07 Jan 2002 00:52:09 +0000
parents f431838015b8
children 5e3c36d93ef6
files codec-cfg.c
diffstat 1 files changed, 4 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/codec-cfg.c	Sun Jan 06 23:52:42 2002 +0000
+++ b/codec-cfg.c	Mon Jan 07 00:52:09 2002 +0000
@@ -797,7 +797,7 @@
 
 int main(void)
 {
-	codecs_t **codecs, *cl;
+	codecs_t *cl;
         FILE *f1;
         FILE *f2;
         int c,d,i;
@@ -808,12 +808,8 @@
         int dshow=-1;
         int win32ex=-1;
 
-	if (!(codecs = parse_codec_cfg("etc/codecs.conf")))
+	if (!(nr_codecs = parse_codec_cfg("etc/codecs.conf")))
 		return 0;
-	if (!codecs[0])
-		printf("no videoconfig.\n");
-	if (!codecs[1])
-		printf("no audioconfig.\n");
 
         f1=fopen("DOCS/codecs-in.html","rb"); if(!f1) exit(1);
         f2=fopen("DOCS/codecs-status.html","wb"); if(!f2) exit(1);
@@ -830,12 +826,12 @@
                 printf("BEGIN %d\n",section);
                 if(section>=5){
                     // audio
-		    cl = codecs[1];
+		    cl = audio_codecs;
 		    nr_codecs = nr_acodecs;
                     dshow=7;win32=4;
                 } else {
                     // video
-		    cl = codecs[0];
+		    cl = video_codecs;
 		    nr_codecs = nr_vcodecs;
                     dshow=4;win32=2;win32ex=6;
                 }