diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2016-08-06 16:15:33 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2016-08-06 16:17:06 +0100 |
commit | f991e09319d55f35f19b486e3094992224ddf4c4 (patch) | |
tree | 79addda5dbdaef15a51acbfb7fdb908c8254287d /gst/dvdspu | |
parent | aea2c13fc1672a7260679d706d0a084a34ba7531 (diff) |
dvdspu: don't crash if video frame could not be mapped
As might happen with e.g. vaapi and the test file from
https://bugzilla.gnome.org/show_bug.cgi?id=736227
Diffstat (limited to 'gst/dvdspu')
-rw-r--r-- | gst/dvdspu/gstdvdspu.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gst/dvdspu/gstdvdspu.c b/gst/dvdspu/gstdvdspu.c index 52d103844..fb2174890 100644 --- a/gst/dvdspu/gstdvdspu.c +++ b/gst/dvdspu/gstdvdspu.c @@ -664,7 +664,9 @@ gstspu_render (GstDVDSpu * dvdspu, GstBuffer * buf) { GstVideoFrame frame; - gst_video_frame_map (&frame, &dvdspu->spu_state.info, buf, GST_MAP_READWRITE); + if (!gst_video_frame_map (&frame, &dvdspu->spu_state.info, buf, + GST_MAP_READWRITE)) + return; switch (dvdspu->spu_input_type) { case SPU_INPUT_TYPE_VOBSUB: |