| 978 | | ObjectMap<Object, Object> params = (ObjectMap<Object, Object>) input.readObject(deserializer, |
| 979 | | Object.class); |
| | 978 | |
| | 979 | Map<Object, Object> params; |
| | 980 | if (object == DataTypes.CORE_MAP) { |
| | 981 | // The params are sent as a Mixed-Array. This is needed |
| | 982 | // to support the RTMP publish provided by ffmpeg/xuggler |
| | 983 | params = (Map<Object, Object>) input.readMap(deserializer, null); |
| | 984 | } else { |
| | 985 | // Read the params as a standard object |
| | 986 | params = (Map<Object, Object>) input.readObject(deserializer, |
| | 987 | Object.class); |
| | 988 | } |