Searched defs:inname (Results 1 - 9 of 9) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/
H A DtestG711.cc36 char inname[80], outname[40], bitname[40]; local
92 sscanf(argv[3], "%s", inname);
102 if ((inp = fopen(inname, "rb")) == NULL) {
103 printf(" G.711: Cannot read file %s.\n", inname);
110 printf("\nInput: %s\nOutput: %s\n", inname, outname);
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/test/
H A DtestG722.cc43 char inname[60], outbit[40], outname[40]; local
88 sscanf(argv[2], "%s", inname);
92 if ((inp = fopen(inname,"rb")) == NULL) {
93 printf(" G.722: Cannot read file %s.\n", inname);
104 printf("\nInput:%s\nOutput bitstream:%s\nOutput:%s\n", inname, outbit, outname);
/external/libpng/contrib/gregbook/
H A Dwpng.c163 char *inname = NULL, outname[256]; local
289 inname = *argv;
300 if (!inname) {
324 } else if ((len = strlen(inname)) > 250) {
328 } else if (!(wpng_info.infile = fopen(inname, "rb"))) {
329 fprintf(stderr, PROGNAME ": can't open input file [%s]\n", inname);
340 inname);
364 /* make outname from inname */
365 if ((p = strrchr(inname, '.')) == NULL ||
366 (p - inname) !
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
H A Dtest_iSACfixfloat.c83 char inname[50], outname[50], bottleneck_file[50], bitfilename[60], local
242 sscanf(argv[argc - 2], "%s", inname);
245 if ((inp = fopen(inname, "rb")) == NULL) {
246 printf(" iSAC: Cannot read file %s.\n", inname);
253 printf("\nInput:%s\nOutput:%s\n", inname, outname);
H A Dkenny.cc98 char inname[100], outname[100], outbitsname[100], bottleneck_file[100]; local
413 sscanf(argv[argc-2], "%s", inname);
425 if ((inp = fopen(inname,"rb")) == NULL) {
426 printf(" iSAC: Cannot read file %s\n", inname);
438 printf("\nInput:%s\nOutput:%s\n\n", inname, outname);
/external/zlib/src/examples/
H A Dgun.c538 /* Decompress the file inname to the file outnname, of if test is true, just
540 inname is NULL or an empty string, read from stdin. If outname is NULL or
542 structure. When appropriate, copy the file attributes from inname to
548 local int gunzip(z_stream *strm, char *inname, char *outname, int test) argument
554 if (inname == NULL || *inname == 0) {
555 inname = "-";
559 infile = open(inname, O_RDONLY, 0);
561 fprintf(stderr, "gun cannot open %s\n", inname);
591 copymeta(inname, outnam
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/
H A DsimpleKenny.c55 char inname[500]; local
160 sscanf(argv[1], "%s", inname);
207 if ((inp = fopen(inname, "rb")) == NULL) {
208 printf(" iSAC: Cannot read file %s.\n", inname);
221 fprintf(bitrateFile, "% %%s \n", inname);
225 printf("Input.................... %s\n", inname);
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/
H A DReleaseTest-API.cc42 char inname[100], outname[100], bottleneck_file[100], vadfile[100]; local
409 sscanf(argv[argc - 2], "%s", inname);
411 printf("\nInput file: %s\n", inname);
413 if ((inp = fopen(inname, "rb")) == NULL) {
414 printf(" Error iSAC Cannot read file %s.\n", inname);
/external/libpng/
H A Dpngtest.c861 test_one_file(PNG_CONST char *inname, PNG_CONST char *outname) argument
888 error_parameters.file_name = inname;
890 if ((fpin = fopen(inname, "rb")) == NULL)
892 fprintf(STDERR, "Could not find input file %s\n", inname);
945 fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname);
963 fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname);
1634 inname, error_count, warning_count);
1645 inname, unsupported_chunks, strict ? ": IGNORED --strict!" : "");
1652 inname, warning_count);
1659 if ((fpin = fopen(inname, "r
1760 static PNG_CONST char *inname = "pngtest/png"; variable
1763 static PNG_CONST char *inname = "pngtest.png"; variable
[all...]

Completed in 283 milliseconds