diff --git a/ext/ffmpeg/gstffmpegdec.c b/ext/ffmpeg/gstffmpegdec.c index f370e7f983..0d9225fc86 100644 --- a/ext/ffmpeg/gstffmpegdec.c +++ b/ext/ffmpeg/gstffmpegdec.c @@ -491,11 +491,11 @@ gst_ffmpegdec_src_query (GstPad * pad, GstObject * parent, GstQuery * query) GstClockTime min_lat, max_lat, our_lat; gst_query_parse_latency (query, &live, &min_lat, &max_lat); - if (ffmpegdec->format.video.fps_n > 0) + if (ffmpegdec->out_info.fps_n > 0) our_lat = gst_util_uint64_scale_int (ffmpegdec->context->has_b_frames * - GST_SECOND, ffmpegdec->format.video.fps_d, - ffmpegdec->format.video.fps_n); + GST_SECOND, ffmpegdec->out_info.fps_d, + ffmpegdec->out_info.fps_n); else our_lat = gst_util_uint64_scale_int (ffmpegdec->context->has_b_frames * @@ -510,7 +510,7 @@ gst_ffmpegdec_src_query (GstPad * pad, GstObject * parent, GstQuery * query) } break; default: - res = gst_pad_query_default (pad, query); + res = gst_pad_query_default (pad, parent, query); break; } diff --git a/ext/libpostproc/gstpostproc.c b/ext/libpostproc/gstpostproc.c index 7278a7d6d4..aa05a9f34a 100644 --- a/ext/libpostproc/gstpostproc.c +++ b/ext/libpostproc/gstpostproc.c @@ -371,10 +371,10 @@ gst_post_proc_base_init (GstPostProcClass * klass) g_free (longname); g_free (description); - gst_element_class_add_static_pad_template (element_class, - &gst_post_proc_src_template); - gst_element_class_add_static_pad_template (element_class, - &gst_post_proc_sink_template); + gst_element_class_add_pad_template (element_class, + gst_static_pad_template_get (&gst_post_proc_src_template)); + gst_element_class_add_pad_template (element_class, + gst_static_pad_template_get (&gst_post_proc_sink_template)); klass->filterid = ppidx; } diff --git a/gst-libs/ext/libav b/gst-libs/ext/libav index 0b8b3387a9..85afbb1d00 160000 --- a/gst-libs/ext/libav +++ b/gst-libs/ext/libav @@ -1 +1 @@ -Subproject commit 0b8b3387a977dcdb6fb9e53bcc9966d34b2e4cec +Subproject commit 85afbb1d00d58812df5d634e946b2fcf653bcd8e