mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-17 12:55:53 +00:00
ext: Update for video base classes API changes
This commit is contained in:
parent
7b16eb49b8
commit
6e673d4796
2 changed files with 2 additions and 2 deletions
|
@ -1169,7 +1169,7 @@ gst_jpeg_dec_handle_frame (GstVideoDecoder * bdec, GstVideoCodecFrame * frame)
|
|||
gst_jpeg_dec_negotiate (dec, width, height, dec->cinfo.jpeg_color_space);
|
||||
|
||||
state = gst_video_decoder_get_output_state (bdec);
|
||||
ret = gst_video_decoder_alloc_output_frame (bdec, frame);
|
||||
ret = gst_video_decoder_allocate_output_frame (bdec, frame);
|
||||
if (G_UNLIKELY (ret != GST_FLOW_OK))
|
||||
goto alloc_failed;
|
||||
|
||||
|
|
|
@ -134,7 +134,7 @@ user_info_callback (png_structp png_ptr, png_infop info)
|
|||
|
||||
/* Allocate output buffer */
|
||||
ret =
|
||||
gst_video_decoder_alloc_output_frame (GST_VIDEO_DECODER (pngdec),
|
||||
gst_video_decoder_allocate_output_frame (GST_VIDEO_DECODER (pngdec),
|
||||
pngdec->current_frame);
|
||||
if (G_UNLIKELY (ret != GST_FLOW_OK))
|
||||
GST_DEBUG_OBJECT (pngdec, "failed to acquire buffer");
|
||||
|
|
Loading…
Reference in a new issue