]> git.sesse.net Git - vlc/blob - modules/codec/rawvideo.c
fourcc: add ARGB for 32-bits RGBA with X11/BD components order
[vlc] / modules / codec / rawvideo.c
1 /*****************************************************************************
2  * rawvideo.c: Pseudo video decoder/packetizer for raw video data
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 VLC authors and VideoLAN
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 it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_plugin.h>
33 #include <vlc_codec.h>
34
35 /*****************************************************************************
36  * decoder_sys_t : raw video decoder descriptor
37  *****************************************************************************/
38 struct decoder_sys_t
39 {
40     /* Module mode */
41     bool b_packetizer;
42
43     /*
44      * Input properties
45      */
46     size_t i_raw_size;
47     bool b_invert;
48     plane_t planes[PICTURE_PLANE_MAX];
49
50     /*
51      * Common properties
52      */
53     date_t pts;
54 };
55
56 /****************************************************************************
57  * Local prototypes
58  ****************************************************************************/
59 static int  OpenDecoder   ( vlc_object_t * );
60 static int  OpenPacketizer( vlc_object_t * );
61 static void CloseDecoder  ( vlc_object_t * );
62
63 static void *DecodeBlock  ( decoder_t *, block_t ** );
64
65 static picture_t *DecodeFrame( decoder_t *, block_t * );
66 static block_t   *SendFrame  ( decoder_t *, block_t * );
67
68 /*****************************************************************************
69  * Module descriptor
70  *****************************************************************************/
71 vlc_module_begin ()
72     set_description( N_("Pseudo raw video decoder") )
73     set_capability( "decoder", 50 )
74     set_category( CAT_INPUT )
75     set_subcategory( SUBCAT_INPUT_VCODEC )
76     set_callbacks( OpenDecoder, CloseDecoder )
77
78     add_submodule ()
79     set_description( N_("Pseudo raw video packetizer") )
80     set_capability( "packetizer", 100 )
81     set_callbacks( OpenPacketizer, CloseDecoder )
82 vlc_module_end ()
83
84 /*****************************************************************************
85  * OpenDecoder: probe the decoder and return score
86  *****************************************************************************/
87 static int OpenDecoder( vlc_object_t *p_this )
88 {
89     decoder_t *p_dec = (decoder_t*)p_this;
90     decoder_sys_t *p_sys;
91
92     switch( p_dec->fmt_in.i_codec )
93     {
94         /* Planar YUV */
95         case VLC_CODEC_I444:
96         case VLC_CODEC_J444:
97         case VLC_CODEC_I440:
98         case VLC_CODEC_J440:
99         case VLC_CODEC_I422:
100         case VLC_CODEC_J422:
101         case VLC_CODEC_I420:
102         case VLC_CODEC_J420:
103         case VLC_CODEC_YV12:
104         case VLC_CODEC_YV9:
105         case VLC_CODEC_I411:
106         case VLC_CODEC_I410:
107         case VLC_CODEC_GREY:
108         case VLC_CODEC_YUVP:
109         case VLC_CODEC_NV12:
110         case VLC_CODEC_NV21:
111         case VLC_CODEC_I422_10L:
112         case VLC_CODEC_I422_10B:
113
114         /* Packed YUV */
115         case VLC_CODEC_YUYV:
116         case VLC_CODEC_YVYU:
117         case VLC_CODEC_UYVY:
118         case VLC_CODEC_VYUY:
119
120         /* RGB */
121         case VLC_CODEC_RGB32:
122         case VLC_CODEC_RGB24:
123         case VLC_CODEC_RGB16:
124         case VLC_CODEC_RGB15:
125         case VLC_CODEC_RGB8:
126         case VLC_CODEC_RGBP:
127         case VLC_CODEC_RGBA:
128         case VLC_CODEC_ARGB:
129             break;
130
131         default:
132             return VLC_EGENERIC;
133     }
134
135     /* Allocate the memory needed to store the decoder's structure */
136     if( ( p_dec->p_sys = p_sys =
137           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
138         return VLC_ENOMEM;
139     /* Misc init */
140     p_dec->p_sys->b_packetizer = false;
141     p_sys->b_invert = false;
142
143     if( (int)p_dec->fmt_in.video.i_height < 0 )
144     {
145         /* Frames are coded from bottom to top */
146         p_dec->fmt_in.video.i_height =
147             (unsigned int)(-(int)p_dec->fmt_in.video.i_height);
148         p_sys->b_invert = true;
149     }
150     if( !p_dec->fmt_in.video.i_visible_width )
151         p_dec->fmt_in.video.i_visible_width = p_dec->fmt_in.video.i_width;
152     if( !p_dec->fmt_in.video.i_visible_height )
153         p_dec->fmt_in.video.i_visible_height = p_dec->fmt_in.video.i_height;
154
155     if( p_dec->fmt_in.video.i_visible_width <= 0
156      || p_dec->fmt_in.video.i_visible_height <= 0 )
157     {
158         msg_Err( p_dec, "invalid display size %dx%d",
159                  p_dec->fmt_in.video.i_width, p_dec->fmt_in.video.i_height );
160         return VLC_EGENERIC;
161     }
162
163     es_format_Copy( &p_dec->fmt_out, &p_dec->fmt_in );
164
165     date_Init( &p_sys->pts, p_dec->fmt_out.video.i_frame_rate,
166                p_dec->fmt_out.video.i_frame_rate_base );
167     if( p_dec->fmt_out.video.i_frame_rate == 0 ||
168         p_dec->fmt_out.video.i_frame_rate_base == 0)
169     {
170         msg_Warn( p_dec, "invalid frame rate %d/%d, using 25 fps instead",
171                   p_dec->fmt_out.video.i_frame_rate,
172                   p_dec->fmt_out.video.i_frame_rate_base);
173         date_Init( &p_sys->pts, 25, 1 );
174     }
175
176     /* Find out p_vdec->i_raw_size */
177     video_format_Setup( &p_dec->fmt_out.video, p_dec->fmt_in.i_codec,
178                         p_dec->fmt_in.video.i_visible_width,
179                         p_dec->fmt_in.video.i_visible_height,
180                         p_dec->fmt_in.video.i_sar_num,
181                         p_dec->fmt_in.video.i_sar_den );
182     picture_t picture;
183     picture_Setup( &picture, p_dec->fmt_out.i_codec,
184                    p_dec->fmt_in.video.i_width,
185                    p_dec->fmt_in.video.i_height, 0, 1 );
186     p_sys->i_raw_size = 0;
187     for( int i = 0; i < picture.i_planes; i++ )
188     {
189         p_sys->i_raw_size += picture.p[i].i_visible_pitch *
190                              picture.p[i].i_visible_lines;
191         p_sys->planes[i] = picture.p[i];
192     }
193
194     if( !p_dec->fmt_in.video.i_sar_num || !p_dec->fmt_in.video.i_sar_den )
195     {
196         p_dec->fmt_out.video.i_sar_num = 1;
197         p_dec->fmt_out.video.i_sar_den = 1;
198     }
199
200     /* Set callbacks */
201     p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
202         DecodeBlock;
203     p_dec->pf_packetize    = (block_t *(*)(decoder_t *, block_t **))
204         DecodeBlock;
205
206     return VLC_SUCCESS;
207 }
208
209 static int OpenPacketizer( vlc_object_t *p_this )
210 {
211     decoder_t *p_dec = (decoder_t*)p_this;
212
213     int i_ret = OpenDecoder( p_this );
214
215     if( i_ret == VLC_SUCCESS ) p_dec->p_sys->b_packetizer = true;
216
217     return i_ret;
218 }
219
220 /****************************************************************************
221  * DecodeBlock: the whole thing
222  ****************************************************************************
223  * This function must be fed with complete frames.
224  ****************************************************************************/
225 static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
226 {
227     decoder_sys_t *p_sys = p_dec->p_sys;
228     block_t *p_block;
229     void *p_buf;
230
231     if( !pp_block || !*pp_block ) return NULL;
232
233     p_block = *pp_block;
234
235
236     if( p_block->i_pts <= VLC_TS_INVALID && p_block->i_dts <= VLC_TS_INVALID &&
237         !date_Get( &p_sys->pts ) )
238     {
239         /* We've just started the stream, wait for the first PTS. */
240         block_Release( p_block );
241         return NULL;
242     }
243
244     /* Date management: If there is a pts avaliable, use that. */
245     if( p_block->i_pts > VLC_TS_INVALID )
246     {
247         date_Set( &p_sys->pts, p_block->i_pts );
248     }
249     else if( p_block->i_dts > VLC_TS_INVALID )
250     {
251         /* NB, davidf doesn't quite agree with this in general, it is ok
252          * for rawvideo since it is in order (ie pts=dts), however, it
253          * may not be ok for an out-of-order codec, so don't copy this
254          * without thinking */
255         date_Set( &p_sys->pts, p_block->i_dts );
256     }
257
258     if( p_block->i_buffer < p_sys->i_raw_size )
259     {
260         msg_Warn( p_dec, "invalid frame size (%zu < %zu)",
261                   p_block->i_buffer, p_sys->i_raw_size );
262
263         block_Release( p_block );
264         return NULL;
265     }
266
267     if( p_sys->b_packetizer )
268     {
269         p_buf = SendFrame( p_dec, p_block );
270     }
271     else
272     {
273         p_buf = DecodeFrame( p_dec, p_block );
274     }
275
276     /* Date management: 1 frame per packet */
277     date_Increment( &p_sys->pts, 1 );
278     *pp_block = NULL;
279
280     return p_buf;
281 }
282
283 /*****************************************************************************
284  * FillPicture:
285  *****************************************************************************/
286 static void FillPicture( decoder_t *p_dec, block_t *p_block, picture_t *p_pic )
287 {
288     int i_plane;
289     decoder_sys_t *p_sys = p_dec->p_sys;
290     uint8_t *p_src = p_block->p_buffer;
291
292     for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
293     {
294         int i_pitch = p_pic->p[i_plane].i_pitch;
295         int i_visible_pitch = p_sys->planes[i_plane].i_visible_pitch;
296         int i_visible_lines = p_sys->planes[i_plane].i_visible_lines;
297         uint8_t *p_dst = p_pic->p[i_plane].p_pixels;
298         uint8_t *p_dst_end = p_dst+i_pitch*i_visible_lines;
299
300         if( p_sys->b_invert )
301             for( p_dst_end -= i_pitch; p_dst <= p_dst_end;
302                  p_dst_end -= i_pitch, p_src += i_visible_pitch )
303                 memcpy( p_dst_end, p_src, i_visible_pitch );
304         else
305             for( ; p_dst < p_dst_end;
306                  p_dst += i_pitch, p_src += i_visible_pitch )
307                 memcpy( p_dst, p_src, i_visible_pitch );
308     }
309 }
310
311 /*****************************************************************************
312  * DecodeFrame: decodes a video frame.
313  *****************************************************************************/
314 static picture_t *DecodeFrame( decoder_t *p_dec, block_t *p_block )
315 {
316     decoder_sys_t *p_sys = p_dec->p_sys;
317     picture_t *p_pic;
318
319     /* Get a new picture */
320     p_pic = decoder_NewPicture( p_dec );
321     if( !p_pic )
322     {
323         block_Release( p_block );
324         return NULL;
325     }
326
327     FillPicture( p_dec, p_block, p_pic );
328
329     p_pic->date = date_Get( &p_sys->pts );
330     if( p_block->i_flags & BLOCK_FLAG_INTERLACED_MASK )
331     {
332         p_pic->b_progressive = false;
333         p_pic->i_nb_fields = 2;
334         if( p_block->i_flags & BLOCK_FLAG_TOP_FIELD_FIRST )
335             p_pic->b_top_field_first = true;
336         else
337             p_pic->b_top_field_first = false;
338     }
339     else
340         p_pic->b_progressive = true;
341
342     block_Release( p_block );
343     return p_pic;
344 }
345
346 /*****************************************************************************
347  * SendFrame: send a video frame to the stream output.
348  *****************************************************************************/
349 static block_t *SendFrame( decoder_t *p_dec, block_t *p_block )
350 {
351     decoder_sys_t *p_sys = p_dec->p_sys;
352
353     p_block->i_dts = p_block->i_pts = date_Get( &p_sys->pts );
354
355     if( p_sys->b_invert )
356     {
357         picture_t pic;
358         uint8_t *p_tmp, *p_pixels;
359         int i, j;
360
361         /* Fill in picture_t fields */
362         picture_Setup( &pic, p_dec->fmt_out.i_codec,
363                        p_dec->fmt_out.video.i_width,
364                        p_dec->fmt_out.video.i_height, 0, 1 );
365
366         if( !pic.i_planes )
367         {
368             msg_Err( p_dec, "unsupported chroma" );
369             return p_block;
370         }
371
372         p_tmp = malloc( pic.p[0].i_pitch );
373         if( !p_tmp )
374             return p_block;
375         p_pixels = p_block->p_buffer;
376         for( i = 0; i < pic.i_planes; i++ )
377         {
378             int i_pitch = pic.p[i].i_pitch;
379             uint8_t *p_top = p_pixels;
380             uint8_t *p_bottom = p_pixels + i_pitch *
381                 (pic.p[i].i_visible_lines - 1);
382
383             for( j = 0; j < pic.p[i].i_visible_lines / 2; j++ )
384             {
385                 memcpy( p_tmp, p_bottom, pic.p[i].i_visible_pitch  );
386                 memcpy( p_bottom, p_top, pic.p[i].i_visible_pitch  );
387                 memcpy( p_top, p_tmp, pic.p[i].i_visible_pitch  );
388                 p_top += i_pitch;
389                 p_bottom -= i_pitch;
390             }
391
392             p_pixels += i_pitch * pic.p[i].i_lines;
393         }
394         free( p_tmp );
395     }
396
397     return p_block;
398 }
399
400 /*****************************************************************************
401  * CloseDecoder: decoder destruction
402  *****************************************************************************/
403 static void CloseDecoder( vlc_object_t *p_this )
404 {
405     decoder_t *p_dec = (decoder_t*)p_this;
406     free( p_dec->p_sys );
407 }