You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
amovie: avoid crash in amovie_request_frame() if no samplesref is available
The crash occurrs when a frame is successfully decoded, but no decoded data is immediately available (typically happens with ogg/vorbis).
This commit is contained in:
@ -446,8 +446,10 @@ static int amovie_request_frame(AVFilterLink *outlink)
|
||||
|
||||
if (movie->is_done)
|
||||
return AVERROR_EOF;
|
||||
do {
|
||||
if ((ret = amovie_get_samples(outlink)) < 0)
|
||||
return ret;
|
||||
} while (!movie->samplesref);
|
||||
|
||||
avfilter_filter_samples(outlink, avfilter_ref_buffer(movie->samplesref, ~0));
|
||||
avfilter_unref_buffer(movie->samplesref);
|
||||
|
Reference in New Issue
Block a user