Skip to content
Snippets Groups Projects
Commit 87bd4020 authored by Kipp Cannon's avatar Kipp Cannon
Browse files

framecpp_channelmux: hack to reproduce previous behaviour

- this is a separate patch so that it can be reverted easily later when
  we're comfortable the new-and-improved capabilities of the muxer won't
  break anything
parent e16de4dc
No related branches found
No related tags found
No related merge requests found
......@@ -302,6 +302,16 @@ static GstFlowReturn build_and_push_frame_file(GstFrameCPPChannelMux *mux, GstCl
*/
buffer_list = framecpp_muxcollectpads_buffer_list_join(buffer_list, FALSE);
/* FIXME: the next two tests should be
* removed. the muxer no longer requires
* the buffer list to contain exactly 1
* buffer. these checks are here
* temporarily to reproduce old behaviour
* that the code has been generalized to no
* longer require */
if(!buffer_list)
continue;
g_assert_cmpuint(g_list_length(buffer_list), ==, 1);
/*
* build Fr{Adc,Proc,Sim}Data, append to
......
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