diff options
author | Marton Balint <cus@passwd.hu> | 2012-10-28 01:31:14 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2012-11-01 15:46:18 +0100 |
commit | afd9e705dea7f61eca49dec1fbe46073f00a43ae (patch) | |
tree | 16bba17a06a30f4c9e9a82ebe44b41430ec438d6 | |
parent | abd49a75240f71a3a8c6281c4838a6de42ae930b (diff) | |
download | ffmpeg-afd9e705dea7f61eca49dec1fbe46073f00a43ae.tar.gz |
ffplay: check for buffersink_params allocation success
Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r-- | ffplay.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1698,6 +1698,9 @@ static int configure_video_filters(AVFilterGraph *graph, VideoState *is, const c AVFilterContext *filt_src = NULL, *filt_out = NULL, *filt_format, *filt_crop; AVCodecContext *codec = is->video_st->codec; + if (!buffersink_params) + return AVERROR(ENOMEM); + snprintf(sws_flags_str, sizeof(sws_flags_str), "flags=%d", sws_flags); graph->scale_sws_opts = av_strdup(sws_flags_str); |