mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
basescope: remove some comments
Those comments where pointing to example calls that we do in the subclass. https://bugzilla.gnome.org/show_bug.cgi?id=651536
This commit is contained in:
parent
a83b706c12
commit
46e3bc48af
1 changed files with 0 additions and 8 deletions
|
@ -279,9 +279,6 @@ gst_base_scope_src_setcaps (GstPad * pad, GstCaps * caps)
|
|||
scope->spf = gst_util_uint64_scale_int (scope->rate,
|
||||
scope->fps_d, scope->fps_n);
|
||||
|
||||
/*
|
||||
synaesthesia_resize (scope->si, scope->width, scope->height);
|
||||
*/
|
||||
if (klass->setup)
|
||||
res = klass->setup (scope);
|
||||
|
||||
|
@ -369,11 +366,6 @@ gst_base_scope_chain (GstPad * pad, GstBuffer * buffer)
|
|||
(guint8 *) gst_adapter_peek (scope->adapter, bytesperread);
|
||||
GST_BUFFER_SIZE (inbuf) = bytesperread;
|
||||
|
||||
/*
|
||||
guchar * out_frame = (guchar *)
|
||||
scope_update (scope->si, scope->datain);
|
||||
memcpy (GST_BUFFER_DATA (outbuf), out_frame, GST_BUFFER_SIZE (outbuf));
|
||||
*/
|
||||
/* call class->render() vmethod */
|
||||
if (render)
|
||||
if (!render (scope, inbuf, outbuf)) {
|
||||
|
|
Loading…
Reference in a new issue