mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
oggdec: print error on unsupported versions
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
96fb233e64
commit
6fd478062c
@ -239,8 +239,10 @@ static int ogg_read_page(AVFormatContext *s, int *str)
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
if (avio_r8(bc) != 0) /* version */
|
||||
if (avio_r8(bc) != 0){ /* version */
|
||||
av_log (s, AV_LOG_ERROR, "ogg page, unsupported version\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
flags = avio_r8(bc);
|
||||
gp = avio_rl64 (bc);
|
||||
|
Loading…
Reference in New Issue
Block a user