Commit a24d0fa8 authored by Jean-Paul Saman's avatar Jean-Paul Saman

FEC_NONE is a valid value in DecodeFEC(). (Fix thanks to Guido Flohr)

parent 4745353e
......@@ -405,6 +405,7 @@ static fe_code_rate_t DecodeFEC( input_thread_t * p_input, int i_val )
switch ( i_val )
{
case 0: fe_fec = FEC_NONE; break;
case 1: fe_fec = FEC_1_2; break;
case 2: fe_fec = FEC_2_3; break;
case 3: fe_fec = FEC_3_4; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment