mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-28 12:32:17 +02:00
asfdec: check stream_index for validity
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e5927910c2
commit
b7280cff9a
@ -975,7 +975,7 @@ static int asf_read_frame_header(AVFormatContext *s, AVIOContext *pb){
|
|||||||
case 0x54:
|
case 0x54:
|
||||||
aspect.num = avio_r8(pb);
|
aspect.num = avio_r8(pb);
|
||||||
aspect.den = avio_r8(pb);
|
aspect.den = avio_r8(pb);
|
||||||
if (aspect.num > 0 && aspect.den > 0) {
|
if (aspect.num > 0 && aspect.den > 0 && asf->stream_index >= 0) {
|
||||||
s->streams[asf->stream_index]->sample_aspect_ratio = aspect;
|
s->streams[asf->stream_index]->sample_aspect_ratio = aspect;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user