Lines Matching defs:out
770 out: buffer int output (if buffer != NULL)
799 * will get out of sync if we read more than framesize worth of data.
924 int out;
936 out = mpg123_decode_frame(global.hip->mh, NULL, (unsigned char**)&outbuf, &outbytes);
937 if (out != MPG123_OK && out != MPG123_DONE)
939 if (out == MPG123_NEW_FORMAT)
948 out = outbytes/(sizeof(short)*global_decoder.mp3input_data.stereo);
951 for (i=0; i<out; ++i) {
957 memcpy(mpg123pcm[0], outbuf, sizeof(short)*out);
961 out = lame_decode_fromfile(musicin, mpg123pcm[0], mpg123pcm[1], &global_decoder.mp3input_data);
963 * out < 0: error, probably EOF
964 * out = 0: not possible with lame_decode_fromfile() ???
965 * out > 0: number of output samples
967 if (out < 0) {
977 out = -1;
987 out = -1;
991 out = -1;
993 return out;
1263 /* try to figure out num_samples */
1287 out: sample_buffer (must be allocated up to samples_to_read upon call)
1803 /*global_reader.input_format = sf_raw; commented out, because it is better to fail
1938 double const flen = lame_get_file_size(musicin); /* try to figure out num_samples */
1986 double flen = lame_get_file_size(musicin); /* try to figure out num_samples */
2159 /* TODO: Figure out if MPG123_GAPLESS is desired or not. */