mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
videoaggregator: don't clobber already heap allocated video frame
CID # 1223440
This commit is contained in:
parent
5ae625a333
commit
fe79c90fc1
1 changed files with 3 additions and 1 deletions
|
@ -1011,7 +1011,7 @@ prepare_frames (GstVideoAggregator * vagg, GstVideoAggregatorPad * pad)
|
|||
GstClockTime timestamp;
|
||||
gint64 stream_time;
|
||||
GstSegment *seg;
|
||||
GstVideoFrame *converted_frame = g_slice_new0 (GstVideoFrame);
|
||||
GstVideoFrame *converted_frame;
|
||||
GstBuffer *converted_buf = NULL;
|
||||
GstVideoFrame *frame = g_slice_new0 (GstVideoFrame);
|
||||
|
||||
|
@ -1034,6 +1034,8 @@ prepare_frames (GstVideoAggregator * vagg, GstVideoAggregatorPad * pad)
|
|||
if (pad->priv->convert) {
|
||||
gint converted_size;
|
||||
|
||||
converted_frame = g_slice_new0 (GstVideoFrame);
|
||||
|
||||
/* We wait until here to set the conversion infos, in case vagg->info changed */
|
||||
if (pad->need_conversion_update) {
|
||||
pad->conversion_info = vagg->info;
|
||||
|
|
Loading…
Reference in a new issue