mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
Do not allow 0 sample rate in TMV demuxer
Originally committed as revision 20195 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f19ae9ea4d
commit
54eb4ae0a2
1 changed files with 5 additions and 0 deletions
|
|
@ -77,6 +77,11 @@ static int tmv_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
|||
return AVERROR(ENOMEM);
|
||||
|
||||
ast->codec->sample_rate = get_le16(pb);
|
||||
if (!ast->codec->sample_rate) {
|
||||
av_log(s, AV_LOG_ERROR, "invalid sample rate\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
tmv->audio_chunk_size = get_le16(pb);
|
||||
if (!tmv->audio_chunk_size) {
|
||||
av_log(s, AV_LOG_ERROR, "invalid audio chunk size\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue