ChannelThere is a radio server that accepts 30 connections (one per team). The server reads a stream of nibbles from each team, exactly 12000 nibbles per second (MSB nibble is read first from bytes). MSB of each nibble must be 1 (the "transmit bit"), LSB 3 bits encode an unsigned amplitude between 0 and 7. When a team is not submitting or when transmit bit is not 1, all zeros are assumed from the team.Furthermore there is an input fifo and a filter for each team. The fifo is used to eliminate network latency problems: teams should keep the fifo filled for at least 2 seconds ahead in time to ensure smooth transmission. The filter implements a moving average of the last 6 samples of the player. Signals from all 30 teams are mixed and some white noise is added: active nibbles from the buffer are all summed (<=7*30) and a random number between 0 and 15 (white noise) is added and "broadcasted" (sent back on all active connections) as "live broadcast". Broadcast format is 12000 unsigned bytes per second, each byte is an amplitude value. Because of all the expected network latency on team transmission and server "broadcasting", send and receive will not be in sync, but broadcast will have a varying delay. Data flow paths and connections are illustrated below. |
![]() |
The server also hosts a reference file provided over http. Once every 30 seconds the file is replaced with a new one. Past reference files are not accessible.
Note: due to the method used for recording the stream, playback may have different noise compared to the live broadcast.
This task is divided into two parts, task I and task J.
Task I consists of the initial 4 hours and a 10 hours submission period, so 40 submissions total. Each accepted submission is worth 12 points, the penalty for wrong answers is -2 points.
After the 14 hours the radio broadcast will be reset. Task J consists of a 10 hour submission period, the published snipets will be only taken from the broadcasting after the 14 hours. There will be no published snipet in the 14th hour and 24th hour so in this task there will be 38 possible submissions. Each accepted submission is worth 40 points and the penalty is -5 points.
The reference file for the same snipet can only be submitted once.