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:
Wim Taymans 2007-08-16 17:11:48 +00:00
parent 6c781b9ca3
commit 1df9f40304
2 changed files with 7 additions and 1 deletions

View file

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

View file

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