Lines Matching defs:codec
39 --codec=CODEC set the codec [default=%s]\n\
61 char *codec = default_codec;
69 if (!strcmp (*argv, "--codec"))
79 codec = *argv;
81 else if (!strncmp (*argv, "--codec=", 8))
83 codec = *argv + 8;
129 if (!strcmp (codec, "bin"))
131 else if (!strcmp (codec, "ascii"))
135 fprintf (stderr, "%s: unknown codec type `%s'\n", program_name, codec);
164 printf ("reading %s output from %s\n", codec, outfile);
196 printf ("%s encode successful\n", codec);
199 codec, program_name, w.status, strerror (w.status));
201 printf ("%s output written to %s\n", codec, outfile);
209 printf ("reading %s output from %s\n", codec, outfile);
217 printf ("%s decode successful\n", codec);
220 program_name, codec, w.status, strerror (w.status));