mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
gst-libs/gst/app/gstappsink.c: Override the preroll vmethod instead of overriding the render method twice.
Original commit message from CVS: * gst-libs/gst/app/gstappsink.c: (gst_app_sink_class_init): Override the preroll vmethod instead of overriding the render method twice.
This commit is contained in:
parent
6c781b9ca3
commit
1df9f40304
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-08-16 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
* gst-libs/gst/app/gstappsink.c: (gst_app_sink_class_init):
|
||||
Override the preroll vmethod instead of overriding the render method
|
||||
twice.
|
||||
|
||||
2007-08-16 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
* gst/rtpmanager/gstrtpjitterbuffer.c:
|
||||
|
|
|
@ -91,7 +91,7 @@ gst_app_sink_class_init (GstAppSinkClass * klass)
|
|||
basesink_class->start = gst_app_sink_start;
|
||||
basesink_class->stop = gst_app_sink_stop;
|
||||
basesink_class->event = gst_app_sink_event;
|
||||
basesink_class->render = gst_app_sink_preroll;
|
||||
basesink_class->preroll = gst_app_sink_preroll;
|
||||
basesink_class->render = gst_app_sink_render;
|
||||
basesink_class->get_caps = gst_app_sink_get_caps;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue