[MPlayer-cvslog] r32653 - in trunk/sub: sub_cc.c sub_cc.h
reimar
subversion at mplayerhq.hu
Sat Nov 27 11:09:20 CET 2010
Author: reimar
Date: Sat Nov 27 11:09:20 2010
New Revision: 32653
Log:
Use uint8_t type instead of unsigned char.
Modified:
trunk/sub/sub_cc.c
trunk/sub/sub_cc.h
Modified: trunk/sub/sub_cc.c
==============================================================================
--- trunk/sub/sub_cc.c Sat Nov 27 11:07:19 2010 (r32652)
+++ trunk/sub/sub_cc.c Sat Nov 27 11:09:20 2010 (r32653)
@@ -182,8 +182,8 @@ static void cc_decode_EIA608(unsigned sh
{
static unsigned short int lastcode=0x0000;
- unsigned char c1 = data & 0x7f;
- unsigned char c2 = (data >> 8) & 0x7f;
+ uint8_t c1 = data & 0x7f;
+ uint8_t c2 = (data >> 8) & 0x7f;
if (c1 & 0x60) { /* normal character, 0x20 <= c1 <= 0x7f */
if (channel != (selected_channel() & 1))
@@ -254,7 +254,7 @@ static void cc_decode_EIA608(unsigned sh
lastcode=data;
}
-static void subcc_decode(const unsigned char *inputbuffer, unsigned int inputlength)
+static void subcc_decode(const uint8_t *inputbuffer, unsigned int inputlength)
{
/* The first number may denote a channel number. I don't have the
* EIA-708 standard, so it is hard to say.
@@ -287,10 +287,10 @@ static void subcc_decode(const unsigned
*
* until end of packet
*/
- const unsigned char *current = inputbuffer;
+ const uint8_t *current = inputbuffer;
unsigned int curbytes = 0;
- unsigned char data1, data2;
- unsigned char cc_code;
+ uint8_t data1, data2;
+ uint8_t cc_code;
int odd_offset = 1;
while (curbytes < inputlength) {
@@ -338,7 +338,7 @@ static void subcc_decode(const unsigned
}
-void subcc_process_data(const unsigned char *inputdata,unsigned int len)
+void subcc_process_data(const uint8_t *inputdata, unsigned int len)
{
if(!subcc_enabled) return;
if(!initialized) subcc_init();
Modified: trunk/sub/sub_cc.h
==============================================================================
--- trunk/sub/sub_cc.h Sat Nov 27 11:07:19 2010 (r32652)
+++ trunk/sub/sub_cc.h Sat Nov 27 11:09:20 2010 (r32653)
@@ -19,9 +19,11 @@
#ifndef MPLAYER_SUB_CC_H
#define MPLAYER_SUB_CC_H
+#include <stdint.h>
+
extern int subcc_enabled;
void subcc_init(void);
-void subcc_process_data(const unsigned char *inputdata, unsigned int len);
+void subcc_process_data(const uint8_t *inputdata, unsigned int len);
#endif /* MPLAYER_SUB_CC_H */
More information about the MPlayer-cvslog
mailing list