Skip to content
Snippets Groups Projects
Commit fb923ea1 authored by Cody Messick's avatar Cody Messick
Browse files

itacac: Remove some outdated comments

parent 7f8a075e
No related branches found
No related tags found
No related merge requests found
......@@ -508,7 +508,6 @@ static GstFlowReturn push_gap(GSTLALItacac *itacac, guint samps) {
}
static GstFlowReturn final_setup(GSTLALItacac *itacac) {
// FIXME Need to add logic to finish initializing GLists. Make sure to ensure there always at least two elements in the GList, even in the case of only having one sinkpad
GstElement *element = GST_ELEMENT(itacac);
GList *padlist;
GstFlowReturn result = GST_FLOW_OK;
......@@ -516,9 +515,6 @@ static GstFlowReturn final_setup(GSTLALItacac *itacac) {
// Ensure all of the pads have the same channels and rate, and set them on itacac for easy access
for(padlist = element->sinkpads; padlist !=NULL; padlist = padlist->next) {
GSTLALItacacPad *itacacpad = GSTLAL_ITACAC_PAD(padlist->data);
//GstBuffer *sinkbuf = gst_aggregator_pad_peek_buffer(GST_AGGREGATOR_PAD(itacacpad));
//gst_buffer_unref(sinkbuf);
// FIXME Should gst_object_sync_values be called here too?
if(padlist == element->sinkpads){
itacac->channels = itacacpad->channels;
itacac->rate = itacacpad->rate;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment