Searched refs:infilename (Results 1 - 15 of 15) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Ddecode.h70 int flac__decode_aiff(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, wav_decode_options_t options);
71 int flac__decode_wav(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, wav_decode_options_t options);
72 int flac__decode_raw(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, raw_decode_options_t options);
H A Dforeign_metadata.h54 FLAC__bool flac__foreign_metadata_write_to_flac(foreign_metadata_t *fm, const char *infilename, const char *outfilename, const char **error);
57 FLAC__bool flac__foreign_metadata_write_to_iff(foreign_metadata_t *fm, const char *infilename, const char *outfilename, off_t offset1, off_t offset2, off_t offset3, const char **error);
H A Dencode.h117 int flac__encode_aif(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options, FLAC__bool is_aifc);
118 int flac__encode_wav(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options);
119 int flac__encode_raw(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, raw_encode_options_t options);
120 int flac__encode_flac(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, flac_encode_options_t options, FLAC__bool input_is_ogg);
H A Dmain.c77 static void format_mistake(const char *infilename, FileFormat wrong, FileFormat right);
79 static int encode_file(const char *infilename, FLAC__bool is_first_file, FLAC__bool is_last_file);
80 static int decode_file(const char *infilename);
82 static const char *get_encoded_outfilename(const char *infilename);
83 static const char *get_decoded_outfilename(const char *infilename);
84 static const char *get_outfilename(const char *infilename, const char *suffix);
1613 void format_mistake(const char *infilename, FileFormat wrong, FileFormat right) argument
1617 flac__utils_printf(stderr, 1, "WARNING: %s is not a %s file; treating as a %s file\n", infilename, ff[wrong], ff[right]);
1620 int encode_file(const char *infilename, FLAC__bool is_first_file, FLAC__bool is_last_file) argument
1630 const char *outfilename = get_encoded_outfilename(infilename); /* th
1948 decode_file(const char *infilename) argument
2078 get_encoded_outfilename(const char *infilename) argument
2084 get_decoded_outfilename(const char *infilename) argument
2102 get_outfilename(const char *infilename, const char *suffix) argument
[all...]
H A Ddecode.c73 const char *infilename; member in struct:__anon815
112 static FLAC__bool DecoderSession_construct(DecoderSession *d, FLAC__bool is_ogg, FLAC__bool use_first_serial_number, long serial_number, FLAC__bool is_aiff_out, FLAC__bool is_wave_out, FLAC__bool treat_warnings_as_errors, FLAC__bool continue_through_decode_errors, FLAC__bool channel_map_none, replaygain_synthesis_spec_t replaygain_synthesis_spec, FLAC__bool analysis_mode, analysis_options aopts, utils__SkipUntilSpecification *skip_specification, utils__SkipUntilSpecification *until_specification, utils__CueSpecification *cue_specification, foreign_metadata_t *foreign_metadata, const char *infilename, const char *outfilename);
114 static FLAC__bool DecoderSession_init_decoder(DecoderSession *d, const char *infilename);
139 int flac__decode_aiff(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, wav_decode_options_t options) argument
167 infilename,
173 if(!DecoderSession_init_decoder(&decoder_session, infilename))
182 int flac__decode_wav(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, wav_decode_options_t options) argument
210 infilename,
216 if(!DecoderSession_init_decoder(&decoder_session, infilename))
225 int flac__decode_raw(const char *infilename, cons argument
271 DecoderSession_construct(DecoderSession *d, FLAC__bool is_ogg, FLAC__bool use_first_serial_number, long serial_number, FLAC__bool is_aiff_out, FLAC__bool is_wave_out, FLAC__bool treat_warnings_as_errors, FLAC__bool continue_through_decode_errors, FLAC__bool channel_map_none, replaygain_synthesis_spec_t replaygain_synthesis_spec, FLAC__bool analysis_mode, analysis_options aopts, utils__SkipUntilSpecification *skip_specification, utils__SkipUntilSpecification *until_specification, utils__CueSpecification *cue_specification, foreign_metadata_t *foreign_metadata, const char *infilename, const char *outfilename) argument
357 DecoderSession_init_decoder(DecoderSession *decoder_session, const char *infilename) argument
[all...]
H A Dforeign_metadata.c514 FLAC__bool flac__foreign_metadata_write_to_flac(foreign_metadata_t *fm, const char *infilename, const char *outfilename, const char **error) argument
528 if(0 == (fin = fopen(infilename, "rb"))) {
571 FLAC__bool flac__foreign_metadata_write_to_iff(foreign_metadata_t *fm, const char *infilename, const char *outfilename, off_t offset1, off_t offset2, off_t offset3, const char **error) argument
575 if(0 == (fin = fopen(infilename, "rb"))) {
H A Dencode.c67 const char *infilename; member in struct:__anon822
126 static FLAC__bool EncoderSession_construct(EncoderSession *e, FLAC__bool use_ogg, FLAC__bool verify, FLAC__bool treat_warnings_as_errors, FLAC__bool continue_through_decode_errors, FILE *infile, const char *infilename, const char *outfilename);
164 int flac__encode_aif(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options, FLAC__bool is_aifc) argument
191 infilename,
206 if(!flac__foreign_metadata_read_from_aiff(options.foreign_metadata, infilename, &error)) {
609 int flac__encode_wav(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options) argument
638 infilename,
653 if(!flac__foreign_metadata_read_from_wave(options.foreign_metadata, infilename, &error)) {
1164 int flac__encode_raw(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, raw_encode_options_t options) argument
1192 infilename,
1432 flac__encode_flac(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, flac_encode_options_t options, FLAC__bool input_is_ogg) argument
1599 EncoderSession_construct(EncoderSession *e, FLAC__bool use_ogg, FLAC__bool verify, FLAC__bool treat_warnings_as_errors, FLAC__bool continue_through_decode_errors, FILE *infile, const char *infilename, const char *outfilename) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_grabbag/cuesheet/
H A Dmain.c31 static int do_cuesheet(const char *infilename, FLAC__bool is_cdda, FLAC__uint64 lead_out_offset) argument
39 FLAC__ASSERT(strlen(infilename) + 2 < sizeof(tmpfilename));
44 if(0 == strcmp(infilename, "-")) {
47 else if(0 == (fin = fopen(infilename, "r"))) {
48 fprintf(stderr, "can't open file %s for reading: %s\n", infilename, strerror(errno));
66 sprintf(tmpfilename, "%s.1", infilename);
98 sprintf(tmpfilename, "%s.2", infilename);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/flex/
H A Dinitscan.c1726 flex_free( (void *) infilename );
1727 infilename = copy_string( yytext + 1 );
1728 infilename[strlen( infilename ) - 1] = '\0';
3660 infilename = copy_string( file );
3661 yyin = fopen( infilename, "r" );
3670 infilename = copy_string( "<stdin>" );
H A Dscan.c1726 flex_free( (void *) infilename );
1727 infilename = copy_string( yytext + 1 );
1728 infilename[strlen( infilename ) - 1] = '\0';
3660 infilename = copy_string( file );
3661 yyin = fopen( infilename, "r" );
3670 infilename = copy_string( "<stdin>" );
H A Dmisc.c395 if ( (do_infile && ! infilename) || (! do_infile && ! outfilename) )
399 s1 = do_infile ? infilename : outfilename;
H A Dflexdef.h409 * infilename - name of input file
434 extern char *infilename, *outfilename;
H A Dparse.y902 fprintf( stderr, "\"%s\", line %d: %s\n", infilename, line, str );
H A Dmain.c67 char *infilename = NULL, *outfilename = NULL; variable
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/flex/MISC/
H A Dparse.c528 fprintf( stderr, "\"%s\", line %d: %s\n", infilename, line, str );

Completed in 85 milliseconds