]> git.sesse.net Git - vlc/blob - modules/codec/csri.c
Clean up include files.
[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( video_format_t *, spu_t *, subpicture_t *, mtime_t );
66 static subpicture_region_t *UpdateRegions( video_format_t *, spu_t *,
67                                            subpicture_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 };
91
92 /*****************************************************************************
93  * Create: Open CSRI renderer
94  *****************************************************************************
95  * Comment me.
96  *****************************************************************************/
97 static int Create( vlc_object_t *p_this )
98 {
99     decoder_t *p_dec = (decoder_t *)p_this;
100     decoder_sys_t *p_sys;
101     csri_rend *p_render;
102     struct csri_stream_ext *p_stream_ext;
103
104     if( p_dec->fmt_in.i_codec != VLC_FOURCC('s','s','a',' ') )
105         return VLC_EGENERIC;
106
107     p_render = csri_renderer_default();
108     if (!p_render)
109     {
110         msg_Err( p_dec, "can't load csri renderer" );
111         return VLC_EGENERIC;
112     }
113     p_stream_ext = csri_query_ext(p_render, CSRI_EXT_STREAM_ASS);
114     if (!p_stream_ext)
115     {
116         msg_Err( p_dec, "csri renderer does not support ASS streaming" );
117         return VLC_EGENERIC;
118     }
119
120     p_dec->pf_decode_sub = DecodeBlock;
121
122     p_dec->p_sys = p_sys = malloc( sizeof( decoder_sys_t ) );
123     if( !p_sys )
124         return VLC_ENOMEM;
125     memset( &p_sys->fmt_cached, 0, sizeof( p_sys->fmt_cached ) );
126
127     p_sys->p_stream_ext = p_stream_ext;
128     p_sys->pf_push_packet = p_stream_ext->push_packet;
129     p_sys->p_instance = p_stream_ext->init_stream( p_render,
130                                                    p_dec->fmt_in.p_extra,
131                                                    p_dec->fmt_in.p_extra ? strnlen( p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra ) : 0,
132                                                    NULL);
133     return VLC_SUCCESS;
134 }
135
136 /*****************************************************************************
137  * Destroy: finish
138  *****************************************************************************
139  * Comment me.
140  *****************************************************************************/
141 static void Destroy( vlc_object_t *p_this )
142 {
143     decoder_t *p_dec = (decoder_t *)p_this;
144     decoder_sys_t *p_sys = p_dec->p_sys;
145
146     if( p_sys->p_stream_ext->discard )
147         p_sys->p_stream_ext->discard( p_sys->p_instance, true );
148     free( p_sys );
149 }
150
151 /****************************************************************************
152  * DecodeBlock: the whole thing
153  ****************************************************************************
154  * This function must be fed with complete subtitles units.
155  ****************************************************************************/
156 static subpicture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
157 {
158     decoder_sys_t *p_sys = p_dec->p_sys;
159
160     subpicture_t *p_spu = NULL;
161     block_t *p_block;
162
163     //msg_Dbg( p_dec, "DecodeBlock %p", (void *)pp_block);
164     if( !pp_block || *pp_block == NULL )
165         return NULL;
166
167     p_block = *pp_block;
168     if( p_block->i_rate != 0 )
169         p_block->i_length = p_block->i_length * p_block->i_rate / INPUT_RATE_DEFAULT;
170     *pp_block = NULL;
171
172     if( p_block->i_buffer == 0 || p_block->p_buffer[0] == '\0' )
173     {
174         block_Release( p_block );
175         return NULL;
176     }
177
178     p_spu = p_dec->pf_spu_buffer_new( p_dec );
179     if( !p_spu )
180     {
181         msg_Warn( p_dec, "can't get spu buffer" );
182         block_Release( p_block );
183         return NULL;
184     }
185
186     p_spu->p_sys = malloc( sizeof( subpicture_sys_t ));
187     if( !p_spu->p_sys )
188     {
189         p_dec->pf_spu_buffer_del( p_dec, p_spu );
190         block_Release( p_block );
191         return NULL;
192     }
193     p_spu->p_sys->p_dec = p_dec;
194
195     p_spu->p_sys->i_subs_len = p_block->i_buffer;
196     p_spu->p_sys->p_subs_data = malloc( p_block->i_buffer );
197     if( !p_spu->p_sys->p_subs_data )
198     {
199         free( p_spu->p_sys );
200         p_dec->pf_spu_buffer_del( p_dec, p_spu );
201         block_Release( p_block );
202         return NULL;
203     }
204     memcpy( p_spu->p_sys->p_subs_data, p_block->p_buffer,
205             p_block->i_buffer );
206
207     p_spu->i_x = 0;
208     p_spu->i_y = 0;
209     p_spu->i_start = p_block->i_pts;
210     p_spu->i_stop = p_block->i_pts + p_block->i_length;
211     p_spu->b_ephemer = false;
212     p_spu->b_absolute = false;
213     p_spu->b_pausable = true;
214
215     //msg_Dbg( p_dec, "BS %lf..%lf", p_spu->i_start * 0.000001, p_spu->i_stop * 0.000001);
216     p_sys->pf_push_packet( p_sys->p_instance,
217                            p_spu->p_sys->p_subs_data, p_spu->p_sys->i_subs_len,
218                            p_spu->i_start * 0.000001,
219                            p_spu->i_stop * 0.000001);
220
221     p_spu->pf_pre_render = PreRender;
222     p_spu->pf_update_regions = UpdateRegions;
223     p_spu->pf_destroy = DestroySubpicture;
224
225     block_Release( p_block );
226
227     return p_spu;
228 }
229
230 static void DestroySubpicture( subpicture_t *p_subpic )
231 {
232     //msg_Dbg( p_subpic->p_sys->p_dec, "drop spu %p", (void *)p_subpic );
233     free( p_subpic->p_sys->p_subs_data );
234     free( p_subpic->p_sys );
235 }
236
237 static void PreRender( video_format_t *p_fmt, spu_t *p_spu,
238                        subpicture_t *p_subpic, mtime_t ts )
239 {
240     decoder_t *p_dec = p_subpic->p_sys->p_dec;
241     p_dec->p_sys->p_spu_final = p_subpic;
242 }
243
244 static subpicture_region_t *UpdateRegions( video_format_t *p_fmt, spu_t *p_spu,
245                                            subpicture_t *p_subpic, mtime_t ts )
246 {
247     decoder_t *p_dec = p_subpic->p_sys->p_dec;
248     decoder_sys_t *p_sys = p_dec->p_sys;
249
250     subpicture_region_t *p_spu_region;
251     video_format_t fmt;
252
253     if( p_subpic != p_sys->p_spu_final )
254         return NULL;
255
256 #if 0
257     msg_Warn( p_dec, "---- fmt: %dx%d %dx%d chroma=%4.4s",
258             p_fmt->i_width, p_fmt->i_height,
259             p_fmt->i_visible_width, p_fmt->i_visible_height,
260             (const char*)&p_fmt->i_chroma );
261 #endif
262     /* XXX On x86 at least our RGBA is mapped to their BGRA
263      * TODO confirm that is the same on big endian cpu */
264     fmt = *p_fmt;
265     fmt.i_chroma = VLC_FOURCC('R','G','B','A');
266     fmt.i_width = fmt.i_visible_width;
267     fmt.i_height = fmt.i_visible_height;
268     fmt.i_bits_per_pixel = 0;
269     fmt.i_x_offset = fmt.i_y_offset = 0;
270     fmt.i_sar_num = 1;
271     fmt.i_sar_den = 1;
272
273     if( memcmp(&fmt, &p_sys->fmt_cached, sizeof(fmt)) )
274     {
275         //msg_Warn( p_dec, "---- fmt: new %dx%d", fmt.i_width, fmt.i_height );
276
277         struct csri_fmt csri_fmt;
278         memset(&csri_fmt, 0, sizeof(csri_fmt));
279         csri_fmt.pixfmt = CSRI_F_BGRA;
280         csri_fmt.width = fmt.i_width;
281         csri_fmt.height = fmt.i_height;
282         if( csri_request_fmt( p_sys->p_instance, &csri_fmt ) )
283             msg_Dbg( p_dec, "csri error: format not supported" );
284
285         p_sys->fmt_cached = fmt;
286     }
287
288     p_subpic->i_original_picture_height = fmt.i_height;
289     p_subpic->i_original_picture_width = fmt.i_width;
290
291     p_spu_region = p_subpic->pf_create_region( VLC_OBJECT(p_dec), &fmt );
292
293     if( p_spu_region )
294     {
295         struct csri_frame csri_frame;
296
297         /* */
298         p_spu_region->i_align = SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_LEFT;
299         memset( p_spu_region->picture.Y_PIXELS, 0x00, p_spu_region->picture.Y_PITCH * p_sys->fmt_cached.i_height );
300
301         /* */
302         //msg_Dbg( p_dec, "TS %lf", ts * 0.000001 );
303         memset( &csri_frame, 0, sizeof(csri_frame) );
304         csri_frame.pixfmt = CSRI_F_BGRA;
305         csri_frame.planes[0] = (unsigned char*)p_spu_region->picture.Y_PIXELS;
306         csri_frame.strides[0] = p_spu_region->picture.Y_PITCH;
307         csri_render( p_sys->p_instance, &csri_frame, ts * 0.000001 );
308     }
309     return p_spu_region;
310 }
311