Home | History | Annotate | Download | only in goldfish

Lines Matching refs:input_source

92     const char* input_source;
326 if (!s->input_source) return;
329 s->input_fd = open(s->input_source, O_BINARY | O_RDONLY);
332 fprintf(stderr, "goldfish_audio could not open %s for audio input\n", s->input_source);
333 s->input_source = NULL; // set to to avoid endless retries
340 fprintf(stderr, "goldfish_audio could not read WAV file header %s\n", s->input_source);
342 s->input_source = NULL; // set to to avoid endless retries
412 return (s->input_source ? 1 : 0);
592 void goldfish_audio_init(uint32_t base, int id, const char* input_source)
610 if (input_source) {
611 s->input_source = input_source;
612 char* extension = strrchr(input_source, '.');