mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-04 23:31:01 +00:00
Merge commit 'bcbe4f3ceb6ee0210d3a401963518906c8b9b230'
* commit 'bcbe4f3ceb6ee0210d3a401963518906c8b9b230': idroqdec: Make sure a video stream has been allocated before returning packets Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
52dc3600a9
@ -145,6 +145,8 @@ static int roq_read_packet(AVFormatContext *s,
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case RoQ_QUAD_CODEBOOK:
|
case RoQ_QUAD_CODEBOOK:
|
||||||
|
if (roq->video_stream_index < 0)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
/* packet needs to contain both this codebook and next VQ chunk */
|
/* packet needs to contain both this codebook and next VQ chunk */
|
||||||
codebook_offset = avio_tell(pb) - RoQ_CHUNK_PREAMBLE_SIZE;
|
codebook_offset = avio_tell(pb) - RoQ_CHUNK_PREAMBLE_SIZE;
|
||||||
codebook_size = chunk_size;
|
codebook_size = chunk_size;
|
||||||
@ -194,6 +196,11 @@ static int roq_read_packet(AVFormatContext *s,
|
|||||||
st->codec->block_align = st->codec->channels * st->codec->bits_per_coded_sample;
|
st->codec->block_align = st->codec->channels * st->codec->bits_per_coded_sample;
|
||||||
}
|
}
|
||||||
case RoQ_QUAD_VQ:
|
case RoQ_QUAD_VQ:
|
||||||
|
if (chunk_type == RoQ_QUAD_VQ) {
|
||||||
|
if (roq->video_stream_index < 0)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
}
|
||||||
|
|
||||||
/* load up the packet */
|
/* load up the packet */
|
||||||
if (av_new_packet(pkt, chunk_size + RoQ_CHUNK_PREAMBLE_SIZE))
|
if (av_new_packet(pkt, chunk_size + RoQ_CHUNK_PREAMBLE_SIZE))
|
||||||
return AVERROR(EIO);
|
return AVERROR(EIO);
|
||||||
|
Loading…
Reference in New Issue
Block a user