mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +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:
|
||||
aspect.num = 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;
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user