/external/libpng/contrib/gregbook/ |
wpng.c | 163 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) != (len - 4) [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/ |
test_iSACfixfloat.c | 93 char inname[50], outname[50], bottleneck_file[50], bitfilename[60], bitending[10]="_bits.pcm"; local 270 sscanf(argv[argc-2], "%s", inname); 273 if ((inp = fopen(inname,"rb")) == NULL) { 274 printf(" iSAC: Cannot read file %s.\n", inname); 281 printf("\nInput:%s\nOutput:%s\n", inname, outname);
|
kenny.c | 96 char inname[100], outname[100], outbitsname[100], bottleneck_file[100]; local 418 sscanf(argv[argc-2], "%s", inname); 430 if ((inp = fopen(inname,"rb")) == NULL) { 431 printf(" iSAC: Cannot read file %s\n", inname); 443 printf("\nInput:%s\nOutput:%s\n\n", inname, outname);
|
/external/libpng/ |
pngtest.c | 96 int test_one_file PNGARG((PNG_CONST char *inname, PNG_CONST char *outname)); 687 test_one_file(PNG_CONST char *inname, PNG_CONST char *outname) 721 MultiByteToWideChar(CP_ACP, 0, inname, -1, path, MAX_PATH); 725 if ((fpin = fopen(inname, "rb")) == NULL) 728 fprintf(STDERR, "Could not find input file %s\n", inname); 757 png_set_error_fn(read_ptr, (png_voidp)inname, pngtest_error, 782 png_set_error_fn(write_ptr, (png_voidp)inname, pngtest_error, 802 fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname); 826 fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname); 1446 static PNG_CONST char *inname = "pngtest\/png"; variable 1449 static PNG_CONST char *inname = "pngtest.png"; variable [all...] |