Commit 4afbaf58 authored by Benjamin Drung's avatar Benjamin Drung Committed by Jean-Baptiste Kempf

Fix typo: bandwith -> bandwidth.

parent 840d47a8
...@@ -108,7 +108,7 @@ typedef struct isdbt_layer ...@@ -108,7 +108,7 @@ typedef struct isdbt_layer
uint8_t time_interleaving; uint8_t time_interleaving;
} isdbt_layer_t; } isdbt_layer_t;
int dvb_set_isdbt (dvb_device_t *, uint32_t freq, uint32_t bandwith, int dvb_set_isdbt (dvb_device_t *, uint32_t freq, uint32_t bandwidth,
int transmission, uint32_t guard, const isdbt_layer_t[3]); int transmission, uint32_t guard, const isdbt_layer_t[3]);
typedef struct isdbt_sound typedef struct isdbt_sound
......
...@@ -959,11 +959,11 @@ static int FrontendSetQAM( access_t *p_access ) ...@@ -959,11 +959,11 @@ static int FrontendSetQAM( access_t *p_access )
static fe_bandwidth_t DecodeBandwidth( access_t *p_access ) static fe_bandwidth_t DecodeBandwidth( access_t *p_access )
{ {
fe_bandwidth_t fe_bandwidth = 0; fe_bandwidth_t fe_bandwidth = 0;
int i_bandwith = var_GetInteger( p_access, "dvb-bandwidth" ); int i_bandwidth = var_GetInteger( p_access, "dvb-bandwidth" );
msg_Dbg( p_access, "using bandwidth=%d", i_bandwith ); msg_Dbg( p_access, "using bandwidth=%d", i_bandwidth );
switch( i_bandwith ) switch( i_bandwidth )
{ {
case 0: fe_bandwidth = BANDWIDTH_AUTO; break; case 0: fe_bandwidth = BANDWIDTH_AUTO; break;
case 6: fe_bandwidth = BANDWIDTH_6_MHZ; break; case 6: fe_bandwidth = BANDWIDTH_6_MHZ; 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