Commit ff0fb8b1 authored by Christophe Massiot's avatar Christophe Massiot

* dvb.c: TRANSMISSION_MODE_4K only exists in recent kernel headers.

parent 230ed0ad
......@@ -637,7 +637,9 @@ static fe_transmit_mode_t GetTransmission(void)
{
case 2: return TRANSMISSION_MODE_2K;
case 8: return TRANSMISSION_MODE_8K;
#ifdef TRANSMISSION_MODE_4K
case 4: return TRANSMISSION_MODE_4K;
#endif
default:
msg_Warn( NULL, "invalid tranmission mode %d", i_transmission );
case -1:
......
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