]> git.sesse.net Git - vlc/blob - modules/demux/rawvid.c
Remove stdlib.h
[vlc] / modules / demux / rawvid.c
1 /*****************************************************************************
2  * rawvid.c : raw video input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *          Antoine Cellerier <dionoea at videolan d.t org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #include <vlc/vlc.h>
30 #include <vlc_demux.h>
31 #include <vlc_vout.h>                                     /* vout_InitFormat */
32
33 /*****************************************************************************
34  * Module descriptor
35  *****************************************************************************/
36 static int  Open ( vlc_object_t * );
37 static void Close( vlc_object_t * );
38
39 #define FPS_TEXT N_("Frames per Second")
40 #define FPS_LONGTEXT N_("This is the desired frame rate when " \
41     "playing raw video streams.")
42
43 #define WIDTH_TEXT N_("Width")
44 #define WIDTH_LONGTEXT N_("This specifies the width in pixels of the raw " \
45     "video stream.")
46
47 #define HEIGHT_TEXT N_("Height")
48 #define HEIGHT_LONGTEXT N_("This specifies the height in pixels of the raw " \
49     "video stream.")
50
51 #define CHROMA_TEXT N_("Force chroma (Use carefully)")
52 #define CHROMA_LONGTEXT N_("Force chroma. This is a four character string.")
53
54 #define ASPECT_RATIO_TEXT N_("Aspect ratio")
55 #define ASPECT_RATIO_LONGTEXT N_( \
56     "Aspect ratio (4:3, 16:9). Default is square pixels." )
57
58 vlc_module_begin();
59     set_shortname( "Raw Video" );
60     set_description( _("Raw video demuxer") );
61     set_capability( "demux2", 3 );
62     set_category( CAT_INPUT );
63     set_subcategory( SUBCAT_INPUT_DEMUX );
64     set_callbacks( Open, Close );
65     add_shortcut( "rawvideo" );
66     add_float( "rawvid-fps", 0, 0, FPS_TEXT, FPS_LONGTEXT, VLC_FALSE );
67     add_integer( "rawvid-width", 0, 0, WIDTH_TEXT, WIDTH_LONGTEXT, 0 );
68     add_integer( "rawvid-height", 0, 0, HEIGHT_TEXT, HEIGHT_LONGTEXT, 0 );
69     add_string( "rawvid-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT,
70                 VLC_TRUE );
71     add_string( "rawvid-aspect-ratio", NULL, NULL,
72                 ASPECT_RATIO_TEXT, ASPECT_RATIO_LONGTEXT, VLC_TRUE );
73 vlc_module_end();
74
75 /*****************************************************************************
76  * Definitions of structures used by this plugin
77  *****************************************************************************/
78 struct demux_sys_t
79 {
80     int    frame_size;
81     float  f_fps;
82
83     es_out_id_t *p_es_video;
84     es_format_t  fmt_video;
85
86     mtime_t i_pcr;
87
88     vlc_bool_t b_y4m;
89 };
90
91 /*****************************************************************************
92  * Local prototypes
93  *****************************************************************************/
94 static int Demux( demux_t * );
95 static int Control( demux_t *, int i_query, va_list args );
96
97 struct preset_t
98 {
99     const char *psz_ext;
100     int i_width;
101     int i_height;
102     double f_fps;
103     const char *psz_aspect_ratio;
104     const char *psz_chroma;
105 };
106
107 static struct preset_t p_presets[] =
108 {
109     { "sqcif", 128, 96, 29.97, "4:3", "YV12" },
110     { "qcif", 176, 144, 29.97, "4:3", "YV12" },
111     { "cif", 352, 288, 29.97, "4:3", "YV12" },
112     { "4cif", 704, 576, 29.97, "4:3", "YV12" },
113     { "16cif", 1408, 1152, 29.97, "4:3", "YV12" },
114     { "yuv", 176, 144, 25, "4:3", "YV12" },
115     { "", 0, 0, 0., "", "" }
116 };
117
118 /*****************************************************************************
119  * Open: initializes raw DV demux structures
120  *****************************************************************************/
121 static int Open( vlc_object_t * p_this )
122 {
123     demux_t     *p_demux = (demux_t*)p_this;
124     demux_sys_t *p_sys;
125     int i_width, i_height;
126     char *psz_ext;
127     char *psz_chroma;
128     uint32_t i_chroma;
129     char *psz_aspect_ratio;
130     unsigned int i_aspect = 0;
131     struct preset_t *p_preset = NULL;
132     const uint8_t *p_peek;
133     vlc_bool_t b_valid = VLC_FALSE;
134     vlc_bool_t b_y4m = VLC_FALSE;
135
136     if( stream_Peek( p_demux->s, &p_peek, 9 ) == 9 )
137     {
138         /* http://wiki.multimedia.cx/index.php?title=YUV4MPEG2 */
139         if( !strncmp( (char *)p_peek, "YUV4MPEG2", 9 ) )
140         {
141             b_valid = VLC_TRUE;
142             b_y4m = VLC_TRUE;
143         }
144     }
145
146     psz_ext = strrchr( p_demux->psz_path, '.' );
147     if( psz_ext )
148     {
149         psz_ext++;
150         for( p_preset = p_presets; *p_preset->psz_ext; p_preset++ )
151             if( !strcasecmp( psz_ext, p_preset->psz_ext ) )
152             {
153                 b_valid = VLC_TRUE;
154                 break;
155             }
156     }
157     if( ( !b_valid ) && strcmp(p_demux->psz_demux, "rawvid") )
158     {
159         return VLC_EGENERIC;
160     }
161
162     /* Set p_input field */
163     p_demux->pf_demux   = Demux;
164     p_demux->pf_control = Control;
165     p_demux->p_sys      = p_sys = malloc( sizeof( demux_sys_t ) );
166     p_sys->i_pcr = 1;
167
168     p_sys->b_y4m = b_y4m;
169     p_sys->f_fps = var_CreateGetFloat( p_demux, "rawvid-fps" );
170     i_width = var_CreateGetInteger( p_demux, "rawvid-width" );
171     i_height = var_CreateGetInteger( p_demux, "rawvid-height" );
172     psz_chroma = var_CreateGetString( p_demux, "rawvid-chroma" );
173     psz_aspect_ratio = var_CreateGetString( p_demux, "rawvid-aspect-ratio" );
174
175     if( b_y4m )
176     {
177         char *psz;
178         char *buf;
179         int a, b;
180         psz = stream_ReadLine( p_demux->s );
181
182         /* TODO: handle interlacing */
183
184 #define READ_FRAC( key, num, den ) \
185         buf = strchr( psz+9, key );\
186         if( buf )\
187         {\
188             char *end = strchr( buf, ' ' );\
189             char *sep;\
190             if( end ) *end = '\0';\
191             sep = strchr( buf, ':' );\
192             if( sep )\
193             {\
194                 *sep = '\0';\
195                 den = atoi( sep+1 );\
196             }\
197             else\
198             {\
199                 den = 1;\
200             }\
201             num = atoi( buf+1 );\
202             if( sep ) *sep = ':';\
203             if( end ) *end = ' ';\
204         }
205         READ_FRAC( 'W', i_width, a )
206         READ_FRAC( 'H', i_height, a )
207         READ_FRAC( 'F', a, b )
208         p_sys->f_fps = (double)a/(double)b;
209         READ_FRAC( 'A', a, b )
210         if( b != 0 ) i_aspect = a * VOUT_ASPECT_FACTOR / b;
211
212         buf = strchr( psz+9, 'C' );
213         if( buf )
214         {
215             char *end = strchr( buf, ' ' );
216             if( end ) *end = '\0';
217             buf++;
218             if( !strncmp( buf, "C420jpeg", 8 ) )
219             {
220                 psz_chroma = strdup( "I420" );
221             }
222             else if( !strncmp( buf, "C420paldv", 9 ) )
223             {
224                 psz_chroma = strdup( "I420" );
225             }
226             else if( !strncmp( buf, "C420", 4 ) )
227             {
228                 psz_chroma = strdup( "I420" );
229             }
230             else if( !strncmp( buf, "C422", 4 ) )
231             {
232                 psz_chroma = strdup( "I422" );
233             }
234             else if( !strncmp( buf, "C444", 4 ) )
235             {
236                 psz_chroma = strdup( "I444" );
237             }
238             else
239             {
240                 msg_Warn( p_demux, "Unknown YUV4MPEG2 chroma type \"%s\"",
241                           buf );
242             }
243             if( end ) *end = ' ';
244         }
245
246         free( psz );
247     }
248
249     if( p_preset && *p_preset->psz_ext )
250     {
251         if( !i_width ) i_width = p_preset->i_width;
252         if( !i_height ) i_height = p_preset->i_height;
253         if( !p_sys->f_fps ) p_sys->f_fps = p_preset->f_fps;
254         if( !*psz_aspect_ratio )
255         {
256             free( psz_aspect_ratio );
257             psz_aspect_ratio = strdup( psz_aspect_ratio );
258         }
259         if( !*psz_chroma )
260         {
261             free( psz_chroma );
262             psz_chroma = strdup( psz_chroma );
263         }
264     }
265
266     if( i_width <= 0 || i_height <= 0 )
267     {
268         msg_Err( p_demux, "width and height must be strictly positive." );
269         free( psz_aspect_ratio );
270         free( psz_chroma );
271         free( p_sys );
272         return VLC_EGENERIC;
273     }
274
275     if( !i_aspect )
276     {
277         if( psz_aspect_ratio && *psz_aspect_ratio )
278         {
279             char *psz_parser = strchr( psz_aspect_ratio, ':' );
280             if( psz_parser )
281             {
282                 *psz_parser++ = '\0';
283                 i_aspect = atoi( psz_aspect_ratio ) * VOUT_ASPECT_FACTOR
284                            / atoi( psz_parser );
285             }
286             else
287             {
288                 i_aspect = atof( psz_aspect_ratio ) * VOUT_ASPECT_FACTOR;
289             }
290         }
291         else
292         {
293             i_aspect = i_width * VOUT_ASPECT_FACTOR / i_height;
294         }
295     }
296     free( psz_aspect_ratio );
297
298     if( psz_chroma && strlen( psz_chroma ) >= 4 )
299     {
300         memcpy( &i_chroma, psz_chroma, 4 );
301         msg_Dbg( p_demux, "Forcing chroma to 0x%.8x (%4.4s)", i_chroma,
302                  (char*)&i_chroma );
303     }
304     else
305     {
306         i_chroma = VLC_FOURCC('Y','V','1','2');
307         msg_Dbg( p_demux, "Using default chroma 0x%.8x (%4.4s)", i_chroma,
308                  (char*)&i_chroma );
309     }
310     free( psz_chroma );
311
312     es_format_Init( &p_sys->fmt_video, VIDEO_ES, i_chroma );
313     vout_InitFormat( &p_sys->fmt_video.video, i_chroma, i_width, i_height,
314                      i_aspect );
315     if( !p_sys->fmt_video.video.i_bits_per_pixel )
316     {
317         msg_Err( p_demux, "Unsupported chroma 0x%.8x (%4.4s)", i_chroma,
318                  (char*)&i_chroma );
319         free( p_sys );
320         return VLC_EGENERIC;
321     }
322     p_sys->frame_size = i_width * i_height
323                         * p_sys->fmt_video.video.i_bits_per_pixel / 8;
324     p_sys->p_es_video = es_out_Add( p_demux->out, &p_sys->fmt_video );
325
326     return VLC_SUCCESS;
327 }
328
329 /*****************************************************************************
330  * Close: frees unused data
331  *****************************************************************************/
332 static void Close( vlc_object_t *p_this )
333 {
334     demux_t     *p_demux = (demux_t*)p_this;
335     demux_sys_t *p_sys  = p_demux->p_sys;
336     free( p_sys );
337 }
338
339 /*****************************************************************************
340  * Demux: reads and demuxes data packets
341  *****************************************************************************
342  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
343  *****************************************************************************/
344 static int Demux( demux_t *p_demux )
345 {
346     demux_sys_t *p_sys  = p_demux->p_sys;
347     block_t     *p_block;
348
349     /* Call the pace control */
350     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pcr );
351
352     if( p_sys->b_y4m )
353     {
354         /* Skip the frame header */
355         unsigned char psz_buf[10];
356         psz_buf[9] = '\0';
357         stream_Read( p_demux->s, psz_buf, strlen( "FRAME" ) );
358         while( psz_buf[0] != 0x0a )
359         {
360             if( stream_Read( p_demux->s, psz_buf, 1 ) < 1 )
361                 return 0;
362         }
363     }
364
365     if( ( p_block = stream_Block( p_demux->s, p_sys->frame_size ) ) == NULL )
366     {
367         /* EOF */
368         return 0;
369     }
370
371     p_block->i_dts = p_block->i_pts = p_sys->i_pcr;
372     es_out_Send( p_demux->out, p_sys->p_es_video, p_block );
373
374     p_sys->i_pcr += ( I64C(1000000) / p_sys->f_fps );
375
376     return 1;
377 }
378
379 /*****************************************************************************
380  * Control:
381  *****************************************************************************/
382 static int Control( demux_t *p_demux, int i_query, va_list args )
383 {
384     demux_sys_t *p_sys  = p_demux->p_sys;
385
386     /* XXX: DEMUX_SET_TIME is precise here */
387     return demux2_vaControlHelper( p_demux->s, 0, -1,
388                                    p_sys->frame_size * p_sys->f_fps * 8,
389                                    p_sys->frame_size, i_query, args );
390 }