byte object = input.readDataType();
log.debug("Dataframe params type: {}", object);
Map<Object, Object> params;
if (object == DataTypes.CORE_MAP) {
// the params are sent as a Mixed-Array. Required to support the RTMP publish provided by ffmpeg/xuggler
params = (Map<Object, Object>) input.readMap(null);
} else {
// read the params as a standard object
params = (Map<Object, Object>) input.readObject(Object.class);
}
log.debug("Dataframe: {} params: {}", onCueOrOnMeta, params.toString());