[vlc-commits] Fix typo: bandwith -> bandwidth.
Benjamin Drung
git at videolan.org
Fri Sep 7 00:39:33 CEST 2012
vlc/vlc-2.0 | branch: master | Benjamin Drung <bdrung at debian.org> | Thu Sep 6 14:15:43 2012 +0200| [df646e716ae4715e0d34fb72d963bd430ba11b5d] | committer: Rafaël Carré
Fix typo: bandwith -> bandwidth.
(cherry picked from commit 4afbaf587d11e0df32e035309cb7425f754b02c5)
Signed-off-by: Rafaël Carré <funman at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=df646e716ae4715e0d34fb72d963bd430ba11b5d
---
modules/access/dtv/dtv.h | 2 +-
modules/access/dvb/linux_dvb.c | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/access/dtv/dtv.h b/modules/access/dtv/dtv.h
index 3cf6503..4ff43d5 100644
--- a/modules/access/dtv/dtv.h
+++ b/modules/access/dtv/dtv.h
@@ -107,7 +107,7 @@ typedef struct isdbt_layer
uint8_t time_interleaving;
} 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]);
typedef struct isdbt_sound
diff --git a/modules/access/dvb/linux_dvb.c b/modules/access/dvb/linux_dvb.c
index 1e163cb..94a875a 100644
--- a/modules/access/dvb/linux_dvb.c
+++ b/modules/access/dvb/linux_dvb.c
@@ -959,11 +959,11 @@ static int FrontendSetQAM( access_t *p_access )
static fe_bandwidth_t DecodeBandwidth( access_t *p_access )
{
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 6: fe_bandwidth = BANDWIDTH_6_MHZ; break;
More information about the vlc-commits
mailing list