Lines Matching refs:mp3data
66 lame_decode_initfile(const char *fullname, mp3data_struct * mp3data)
95 mp3data->header_parsed = 0;
100 mp3data->header_parsed = 1;
101 mp3data->stereo = mstream->dec_channels;
102 mp3data->samplerate = mstream->dec_frequency;
103 mp3data->bitrate = mstream->bitrate;
104 mp3data->nsamp = (float) mstream->ms_duration / 1000 * mstream->dec_frequency;
105 mp3data->mode = mstream->mode;
106 mp3data->mode_ext = 0; /* mpega.library doesn't supply this info! :( */
107 mp3data->framesize = smpls[mstream->norm - 1][mstream->layer];
113 lame_decode_fromfile(FILE * fd, short pcm_l[], short pcm_r[], mp3data_struct * mp3data)
121 mp3data->header_parsed = 0;
128 mp3data->header_parsed = 1;
129 mp3data->stereo = mstream->dec_channels;
130 mp3data->samplerate = mstream->dec_frequency;
131 mp3data->bitrate = mstream->bitrate;
132 mp3data->mode = mstream->mode;
133 mp3data->mode_ext = 0; /* mpega.library doesn't supply this info! :( */
134 mp3data->framesize = smpls[mstream->norm - 1][mstream->layer];