1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

For #813, refine code.

This commit is contained in:
winlin 2017-03-25 12:52:54 +08:00
parent 8ad934a8a4
commit 2980e7d3ef
4 changed files with 12 additions and 22 deletions

View file

@ -1395,9 +1395,8 @@ int SrsFormat::audio_mp3_demux(SrsBuffer* stream, int64_t timestamp)
return ret;
}
// format is sound_format?
srs_info("audio decoded, type=%d, codec=%d, asize=%d, rate=%d, format=%d, size=%d",
acodec->sound_type, acodec->id, acodec->sound_size, acodec->sound_rate, sound_format, size);
srs_info("audio decoded, codec=%d, ssize=%d, srate=%d, channels=%d, size=%d",
acodec->id, acodec->sound_size, acodec->sound_rate, acodec->sound_type, size);
return ret;
}