mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
avformat/mxfdec: check sample size more completely
Fixes division by zero Fixes Ticket2992 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e064d0aaf6
commit
9790a03e67
@ -2195,7 +2195,9 @@ static int mxf_set_audio_pts(MXFContext *mxf, AVCodecContext *codec, AVPacket *p
|
||||
{
|
||||
MXFTrack *track = mxf->fc->streams[pkt->stream_index]->priv_data;
|
||||
pkt->pts = track->sample_count;
|
||||
if (codec->channels <= 0 || av_get_bits_per_sample(codec->codec_id) <= 0)
|
||||
if ( codec->channels <= 0
|
||||
|| av_get_bits_per_sample(codec->codec_id) <= 0
|
||||
|| codec->channels * (int64_t)av_get_bits_per_sample(codec->codec_id) < 8)
|
||||
return AVERROR(EINVAL);
|
||||
track->sample_count += pkt->size / (codec->channels * (int64_t)av_get_bits_per_sample(codec->codec_id) / 8);
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user