]> git.sesse.net Git - vlc/blob - modules/codec/cc.h
Don't include config.h from the headers - refs #297.
[vlc] / modules / codec / cc.h
1 /*****************************************************************************
2  * cc.h
3  *****************************************************************************
4  * Copyright (C) 2007 Laurent Aimar
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef _CC_H
25 #define _C_H 1
26
27 /* CC have a maximum rate of 9600 bit/s (per field?) */
28 #define CC_MAX_DATA_SIZE (2 * 3*600)
29 typedef struct
30 {
31     /* Which channel are present */
32     vlc_bool_t pb_present[4];
33
34     /* */
35     vlc_bool_t b_reorder;
36
37     /* CC data per field
38      *  byte[x+0]: field (0/1)
39      *  byte[x+1]: cc data 1
40      *  byte[x+2]: cc data 2
41      */
42     int     i_data;
43     uint8_t p_data[CC_MAX_DATA_SIZE];
44 } cc_data_t;
45
46 static inline int cc_Channel( int i_field, const uint8_t p_data[2] )
47 {
48     const uint8_t d = p_data[0] & 0x7f;
49     if( i_field != 0 && i_field != 1 )
50         return -1;
51     if( d == 0x14 )
52         return 2*i_field + 0;
53     else if( d == 0x1c )
54         return 2*i_field + 1;
55     /* unknown(middle of a command)  or not cc channel */
56     return -1;
57 }
58 static inline void cc_Init( cc_data_t *c )
59 {
60     int i;
61
62     for( i = 0; i < 4; i++ )
63         c-> pb_present[i] = VLC_FALSE; 
64     c->i_data = 0;
65     c->b_reorder = VLC_FALSE;
66 }
67 static inline void cc_Exit( cc_data_t *c )
68 {
69     return;
70 }
71 static inline void cc_Flush( cc_data_t *c )
72 {
73     c->i_data = 0;
74 }
75 static inline void cc_Extract( cc_data_t *c, const uint8_t *p_src, int i_src )
76 {
77     static const uint8_t p_cc_ga94[4] = { 0x47, 0x41, 0x39, 0x34 };
78     static const uint8_t p_cc_dvd[4] = { 0x43, 0x43, 0x01, 0xf8 };
79     static const uint8_t p_cc_replaytv4a[2] = { 0xbb, 0x02 };
80     static const uint8_t p_cc_replaytv4b[2] = { 0xcc, 0x02 };
81     static const uint8_t p_cc_replaytv5a[2] = { 0x99, 0x02 };
82     static const uint8_t p_cc_replaytv5b[2] = { 0xaa, 0x02 };
83     //static const uint8_t p_afd_start[4] = { 0x44, 0x54, 0x47, 0x31 };
84
85     if( i_src < 4 )
86         return;
87
88     if( !memcmp( p_cc_ga94, p_src, 4 ) && i_src >= 5+1+1+1 && p_src[4] == 0x03 )
89     {
90         /* Extract CC from DVB/ATSC TS */
91         /* cc_data()
92          *          u1 reserved(1)
93          *          u1 process_cc_data_flag
94          *          u1 additional_data_flag
95          *          u5 cc_count
96          *          u8 reserved(1111 1111)
97          *          for cc_count
98          *              u5 marker bit(1111 1)
99          *              u1 cc_valid
100          *              u2 cc_type
101          *              u8 cc_data_1
102          *              u8 cc_data_2
103          *          u8 marker bit(1111 1111)
104          *          if additional_data_flag
105          *              unknown
106          */
107         /* cc_type:
108          *  0x00: field 1
109          *  0x01: field 2
110          */
111         const uint8_t *cc = &p_src[5];
112         const int i_count_cc = cc[0]&0x1f;
113         int i;
114
115         if( !(cc[0]&0x40) ) // process flag
116             return;
117         if( i_src < 5 + 1+1 + i_count_cc*3 + 1)  // broken packet
118             return;
119         if( i_count_cc <= 0 )   // no cc present
120             return;
121         if( cc[2+i_count_cc * 3] != 0xff )  // marker absent
122             return;
123         cc += 2;
124
125         for( i = 0; i < i_count_cc; i++, cc += 3 )
126         {
127             int i_field = cc[0] & 0x03;
128             int i_channel;
129             if( ( cc[0] & 0xfc ) != 0xfc )
130                 continue;
131             if( i_field != 0 && i_field != 1 )
132                 continue;
133             if( c->i_data + 3 > CC_MAX_DATA_SIZE )
134                 continue;
135
136             i_channel = cc_Channel( i_field, &cc[1] );
137             if( i_channel >= 0 && i_channel < 4 )
138                 c->pb_present[i_channel] = VLC_TRUE;
139
140             c->p_data[c->i_data++] = i_field;
141             c->p_data[c->i_data++] = cc[1];
142             c->p_data[c->i_data++] = cc[2];
143         }
144         c->b_reorder = VLC_TRUE;
145     }
146     else if( !memcmp( p_cc_dvd, p_src, 4 ) && i_src > 4+1 )
147     {
148         /* DVD CC */
149         const int b_truncate = p_src[4] & 0x01;
150         const int i_field_first = (p_src[4] & 0x80) ? 0 : 1;
151         const int i_count_cc2 = (p_src[4] >> 1) & 0xf;
152         const uint8_t *cc = &p_src[5];
153         int i;
154
155         if( i_src < 4+1+6*i_count_cc2 - ( b_truncate ? 3 : 0) )
156             return;
157         for( i = 0; i < i_count_cc2; i++ )
158         {
159             int j;
160             for( j = 0; j < 2; j++, cc += 3 )
161             {
162                 const int i_field = j == i_field_first ? 0 : 1;
163                 int i_channel;
164
165                 if( b_truncate && i == i_count_cc2 - 1 && j == 1 )
166                     break;
167                 if( cc[0] != 0xff && cc[0] != 0xfe )
168                     continue;
169                 if( c->i_data + 3 > CC_MAX_DATA_SIZE )
170                     continue;
171
172                 i_channel = cc_Channel( i_field, &cc[1] );
173                 if( i_channel >= 0 && i_channel < 4 )
174                     c->pb_present[i_channel] = VLC_TRUE;
175                 c->p_data[c->i_data++] = i_field;
176                 c->p_data[c->i_data++] = cc[1];
177                 c->p_data[c->i_data++] = cc[2];
178             }
179         }
180         c->b_reorder = VLC_FALSE;
181     }
182     else if( i_src >= 2+2 + 2+2 &&
183              ( ( !memcmp( p_cc_replaytv4a, &p_src[0], 2 ) && !memcmp( p_cc_replaytv4b, &p_src[4], 2 ) ) ||
184                ( !memcmp( p_cc_replaytv5a, &p_src[0], 2 ) && !memcmp( p_cc_replaytv5b, &p_src[4], 2 ) ) ) )
185     {
186         /* ReplayTV CC */
187         const uint8_t *cc = &p_src[0];
188         int i;
189         if( c->i_data + 2*3 > CC_MAX_DATA_SIZE )
190             return;
191
192         for( i = 0; i < 2; i++, cc += 4 )
193         {
194             const int i_field = i == 0 ? 1 : 0;
195             int i_channel = cc_Channel( i_field, &cc[2] );
196             if( i_channel >= 0 && i_channel < 4 )
197                 c->pb_present[i_channel] = VLC_TRUE;
198             c->p_data[c->i_data++] = i_field;
199             c->p_data[c->i_data++] = cc[2];
200             c->p_data[c->i_data++] = cc[3];
201         }
202         c->b_reorder = VLC_FALSE;
203     }
204     else
205     {
206 #if 0
207 #define V(x) ( ( x < 0x20 || x >= 0x7f ) ? '?' : x )
208         fprintf( stderr, "-------------- unknown user data %2.2x %2.2x %2.2x %2.2x %c%c%c%c\n",
209                  p_src[0], p_src[1], p_src[2], p_src[3],
210                  V(p_src[0]), V(p_src[1]), V(p_src[2]), V(p_src[3]) );
211 #undef V
212 #endif
213         /* TODO DVD CC, ... */
214     }
215 }
216
217 #endif /* _CC_H */
218