Lines Matching refs:codec_id
172 unsigned type, ssize, codec_id = 0; in moflex_read_sync() local
188 codec_id = avio_r8(pb); in moflex_read_sync()
189 switch (codec_id) { in moflex_read_sync()
190 case 0: codec_id = AV_CODEC_ID_FASTAUDIO; break; in moflex_read_sync()
191 case 1: codec_id = AV_CODEC_ID_ADPCM_IMA_MOFLEX; break; in moflex_read_sync()
192 case 2: codec_id = AV_CODEC_ID_PCM_S16LE; break; in moflex_read_sync()
194 av_log(s, AV_LOG_ERROR, "Unsupported audio codec: %d\n", codec_id); in moflex_read_sync()
204 codec_id = avio_r8(pb); in moflex_read_sync()
205 switch (codec_id) { in moflex_read_sync()
206 case 0: codec_id = AV_CODEC_ID_MOBICLIP; break; in moflex_read_sync()
208 av_log(s, AV_LOG_ERROR, "Unsupported video codec: %d\n", codec_id); in moflex_read_sync()
231 st->codecpar->codec_id = codec_id; in moflex_read_sync()