ext: Update for video base classes API changes

This commit is contained in:
Sebastian Dröge 2012-07-23 10:32:36 +02:00
parent 7b16eb49b8
commit 6e673d4796
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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");