]> git.sesse.net Git - vlc/blob - modules/codec/csri.c
Remove most stray semi-colons in module descriptions
[vlc] / modules / codec / csri.c
1 /*****************************************************************************
2  * csri.c : Load CSRI subtitle renderer
3  *****************************************************************************
4  * Copyright (C) 2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: David Lamparter <equinox@videolan.org>
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 #   include "config.h"
30 #endif
31
32 #include <string.h>
33 #include <math.h>
34
35 #include <vlc_common.h>
36 #include <vlc_plugin.h>
37 #include <vlc_vout.h>
38 #include <vlc_codec.h>
39 #include <vlc_osd.h>
40 #include <vlc_input.h>
41
42 #include <csri/csri.h>
43 #include <csri/stream.h>
44
45 /*****************************************************************************
46  * Module descriptor
47  *****************************************************************************/
48 static int  Create ( vlc_object_t * );
49 static void Destroy( vlc_object_t * );
50
51 vlc_module_begin ()
52     set_shortname( N_("Subtitles (advanced)"))
53     set_description( N_("Wrapper for subtitle renderers using CSRI/asa") )
54     set_capability( "decoder", 60 )
55     set_category( CAT_INPUT )
56     set_subcategory( SUBCAT_INPUT_SCODEC )
57     set_callbacks( Create, Destroy )
58 vlc_module_end ()
59
60 /*****************************************************************************
61  * Local prototypes
62  *****************************************************************************/
63 static subpicture_t *DecodeBlock( decoder_t *, block_t ** );
64 static void DestroySubpicture( subpicture_t * );
65 static void PreRender( spu_t *, subpicture_t *, const video_format_t * );
66 static void UpdateRegions( spu_t *, subpicture_t *,
67                            const video_format_t *,  mtime_t );
68
69 /*****************************************************************************
70  * decoder_sys_t: decoder data
71  *****************************************************************************/
72 struct decoder_sys_t
73 {
74     subpicture_t *p_spu_final;
75     video_format_t fmt_cached;
76     csri_inst *p_instance;
77
78     struct csri_stream_ext *p_stream_ext;
79
80     void (*pf_push_packet)(csri_inst *inst, const void *packet,
81                            size_t packetlen, double pts_start,
82                            double pts_end);
83 };
84
85 struct subpicture_sys_t
86 {
87     decoder_t *p_dec;
88     void      *p_subs_data;
89     int       i_subs_len;
90     mtime_t   i_pts;
91 };
92
93 /*****************************************************************************
94  * Create: Open CSRI renderer
95  *****************************************************************************
96  * Comment me.
97  *****************************************************************************/
98 static int Create( vlc_object_t *p_this )
99 {
100     decoder_t *p_dec = (decoder_t *)p_this;
101     decoder_sys_t *p_sys;
102     csri_rend *p_render;
103     struct csri_stream_ext *p_stream_ext;
104
105     if( p_dec->fmt_in.i_codec != VLC_FOURCC('s','s','a',' ') )
106         return VLC_EGENERIC;
107
108     p_render = csri_renderer_default();
109     if (!p_render)
110     {
111         msg_Err( p_dec, "can't load csri renderer" );
112         return VLC_EGENERIC;
113     }
114     p_stream_ext = csri_query_ext(p_render, CSRI_EXT_STREAM_ASS);
115     if (!p_stream_ext)
116     {
117         msg_Err( p_dec, "csri renderer does not support ASS streaming" );
118         return VLC_EGENERIC;
119     }
120
121     p_dec->pf_decode_sub = DecodeBlock;
122
123     p_dec->p_sys = p_sys = malloc( sizeof( decoder_sys_t ) );
124     if( !p_sys )
125         return VLC_ENOMEM;
126     memset( &p_sys->fmt_cached, 0, sizeof( p_sys->fmt_cached ) );
127
128     p_sys->p_stream_ext = p_stream_ext;
129     p_sys->pf_push_packet = p_stream_ext->push_packet;
130     p_sys->p_instance = p_stream_ext->init_stream( p_render,
131                                                    p_dec->fmt_in.p_extra,
132                                                    p_dec->fmt_in.p_extra ? strnlen( p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra ) : 0,
133                                                    NULL);
134     return VLC_SUCCESS;
135 }
136
137 /*****************************************************************************
138  * Destroy: finish
139  *****************************************************************************
140  * Comment me.
141  *****************************************************************************/
142 static void Destroy( vlc_object_t *p_this )
143 {
144     decoder_t *p_dec = (decoder_t *)p_this;
145     decoder_sys_t *p_sys = p_dec->p_sys;
146
147     if( p_sys->p_stream_ext->discard )
148         p_sys->p_stream_ext->discard( p_sys->p_instance, true );
149     free( p_sys );
150 }
151
152 /****************************************************************************
153  * DecodeBlock: the whole thing
154  ****************************************************************************
155  * This function must be fed with complete subtitles units.
156  ****************************************************************************/
157 static subpicture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
158 {
159     decoder_sys_t *p_sys = p_dec->p_sys;
160
161     subpicture_t *p_spu = NULL;
162     block_t *p_block;
163
164     //msg_Dbg( p_dec, "DecodeBlock %p", (void *)pp_block);
165     if( !pp_block || *pp_block == NULL )
166         return NULL;
167
168     p_block = *pp_block;
169     *pp_block = NULL;
170
171     if( p_block->i_buffer == 0 || p_block->p_buffer[0] == '\0' )
172     {
173         block_Release( p_block );
174         return NULL;
175     }
176
177     p_spu = decoder_NewSubpicture( p_dec );
178     if( !p_spu )
179     {
180         msg_Warn( p_dec, "can't get spu buffer" );
181         block_Release( p_block );
182         return NULL;
183     }
184
185     p_spu->p_sys = malloc( sizeof( subpicture_sys_t ));
186     if( !p_spu->p_sys )
187     {
188         decoder_DeleteSubpicture( p_dec, p_spu );
189         block_Release( p_block );
190         return NULL;
191     }
192     p_spu->p_sys->p_dec = p_dec;
193
194     p_spu->p_sys->i_subs_len = p_block->i_buffer;
195     p_spu->p_sys->p_subs_data = malloc( p_block->i_buffer );
196     if( !p_spu->p_sys->p_subs_data )
197     {
198         free( p_spu->p_sys );
199         decoder_DeleteSubpicture( p_dec, p_spu );
200         block_Release( p_block );
201         return NULL;
202     }
203     memcpy( p_spu->p_sys->p_subs_data, p_block->p_buffer,
204             p_block->i_buffer );
205     p_spu->p_sys->i_pts = p_block->i_pts;
206
207     p_spu->i_start = p_block->i_pts;
208     p_spu->i_stop = p_block->i_pts + p_block->i_length;
209     p_spu->b_ephemer = false;
210     p_spu->b_absolute = false;
211
212     //msg_Dbg( p_dec, "BS %lf..%lf", p_spu->i_start * 0.000001, p_spu->i_stop * 0.000001);
213     p_sys->pf_push_packet( p_sys->p_instance,
214                            p_spu->p_sys->p_subs_data, p_spu->p_sys->i_subs_len,
215                            p_spu->i_start * 0.000001,
216                            p_spu->i_stop * 0.000001);
217
218     p_spu->pf_pre_render = PreRender;
219     p_spu->pf_update_regions = UpdateRegions;
220     p_spu->pf_destroy = DestroySubpicture;
221
222     block_Release( p_block );
223
224     return p_spu;
225 }
226
227 static void DestroySubpicture( subpicture_t *p_subpic )
228 {
229     //msg_Dbg( p_subpic->p_sys->p_dec, "drop spu %p", (void *)p_subpic );
230     free( p_subpic->p_sys->p_subs_data );
231     free( p_subpic->p_sys );
232 }
233
234 static void PreRender( spu_t *p_spu, subpicture_t *p_subpic,
235                        const video_format_t *p_fmt )
236 {
237     decoder_t *p_dec = p_subpic->p_sys->p_dec;
238     p_dec->p_sys->p_spu_final = p_subpic;
239     VLC_UNUSED(p_fmt);
240     VLC_UNUSED(p_spu);
241 }
242
243 static void UpdateRegions( spu_t *p_spu, subpicture_t *p_subpic,
244                            const video_format_t *p_fmt, mtime_t i_ts )
245 {
246     decoder_t *p_dec = p_subpic->p_sys->p_dec;
247     decoder_sys_t *p_sys = p_dec->p_sys;
248
249     subpicture_region_t *p_spu_region;
250     video_format_t fmt;
251
252     /* TODO maybe checking if we really need redrawing */
253     subpicture_region_ChainDelete( p_subpic->p_region );
254     p_subpic->p_region = NULL;
255
256     /* FIXME check why this is needed */
257     if( p_subpic != p_sys->p_spu_final )
258         return;
259
260 #if 0
261     msg_Warn( p_dec, "---- fmt: %dx%d %dx%d chroma=%4.4s",
262             p_fmt->i_width, p_fmt->i_height,
263             p_fmt->i_visible_width, p_fmt->i_visible_height,
264             (const char*)&p_fmt->i_chroma );
265 #endif
266     /* XXX On x86 at least our RGBA is mapped to their BGRA
267      * TODO confirm that is the same on big endian cpu */
268     fmt = *p_fmt;
269     fmt.i_chroma = VLC_FOURCC('R','G','B','A');
270     fmt.i_width = fmt.i_visible_width;
271     fmt.i_height = fmt.i_visible_height;
272     fmt.i_bits_per_pixel = 0;
273     fmt.i_x_offset = fmt.i_y_offset = 0;
274     fmt.i_sar_num = 1;
275     fmt.i_sar_den = 1;
276
277     if( memcmp(&fmt, &p_sys->fmt_cached, sizeof(fmt)) )
278     {
279         //msg_Warn( p_dec, "---- fmt: new %dx%d", fmt.i_width, fmt.i_height );
280
281         struct csri_fmt csri_fmt;
282         memset(&csri_fmt, 0, sizeof(csri_fmt));
283         csri_fmt.pixfmt = CSRI_F_BGRA;
284         csri_fmt.width = fmt.i_width;
285         csri_fmt.height = fmt.i_height;
286         if( csri_request_fmt( p_sys->p_instance, &csri_fmt ) )
287             msg_Dbg( p_dec, "csri error: format not supported" );
288
289         p_sys->fmt_cached = fmt;
290     }
291
292     p_subpic->i_original_picture_height = fmt.i_height;
293     p_subpic->i_original_picture_width = fmt.i_width;
294
295     p_spu_region = p_subpic->p_region = subpicture_region_New( &fmt );
296
297     if( p_spu_region )
298     {
299         struct csri_frame csri_frame;
300
301         /* */
302         p_spu_region->i_align = SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_LEFT;
303         memset( p_spu_region->p_picture->Y_PIXELS, 0x00, p_spu_region->p_picture->Y_PITCH * p_sys->fmt_cached.i_height );
304
305         /* */
306         const mtime_t i_stream_date = p_subpic->p_sys->i_pts + (i_ts - p_subpic->i_start);
307
308         //msg_Dbg( p_dec, "TS %lf", ts * 0.000001 );
309         memset( &csri_frame, 0, sizeof(csri_frame) );
310         csri_frame.pixfmt = CSRI_F_BGRA;
311         csri_frame.planes[0] = (unsigned char*)p_spu_region->p_picture->Y_PIXELS;
312         csri_frame.strides[0] = p_spu_region->p_picture->Y_PITCH;
313         csri_render( p_sys->p_instance, &csri_frame, i_stream_date * 0.000001 );
314     }
315 }
316