]> git.sesse.net Git - vlc/blob - modules/codec/rawvideo.c
e87ab8eb0373515fe1492dbccb231be043108029
[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_width,
179                         p_dec->fmt_in.video.i_height,
180                         p_dec->fmt_in.video.i_visible_width,
181                         p_dec->fmt_in.video.i_visible_height,
182                         p_dec->fmt_in.video.i_sar_num,
183                         p_dec->fmt_in.video.i_sar_den );
184     picture_t picture;
185     picture_Setup( &picture, &p_dec->fmt_out );
186
187     p_sys->i_raw_size = 0;
188     for( int i = 0; i < picture.i_planes; i++ )
189     {
190         p_sys->i_raw_size += picture.p[i].i_visible_pitch *
191                              picture.p[i].i_visible_lines;
192         p_sys->planes[i] = picture.p[i];
193     }
194
195     /* Set callbacks */
196     p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
197         DecodeBlock;
198     p_dec->pf_packetize    = (block_t *(*)(decoder_t *, block_t **))
199         DecodeBlock;
200
201     return VLC_SUCCESS;
202 }
203
204 static int OpenPacketizer( vlc_object_t *p_this )
205 {
206     decoder_t *p_dec = (decoder_t*)p_this;
207
208     int i_ret = OpenDecoder( p_this );
209
210     if( i_ret == VLC_SUCCESS ) p_dec->p_sys->b_packetizer = true;
211
212     return i_ret;
213 }
214
215 /****************************************************************************
216  * DecodeBlock: the whole thing
217  ****************************************************************************
218  * This function must be fed with complete frames.
219  ****************************************************************************/
220 static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
221 {
222     decoder_sys_t *p_sys = p_dec->p_sys;
223     block_t *p_block;
224     void *p_buf;
225
226     if( !pp_block || !*pp_block ) return NULL;
227
228     p_block = *pp_block;
229
230
231     if( p_block->i_pts <= VLC_TS_INVALID && p_block->i_dts <= VLC_TS_INVALID &&
232         !date_Get( &p_sys->pts ) )
233     {
234         /* We've just started the stream, wait for the first PTS. */
235         block_Release( p_block );
236         return NULL;
237     }
238
239     /* Date management: If there is a pts avaliable, use that. */
240     if( p_block->i_pts > VLC_TS_INVALID )
241     {
242         date_Set( &p_sys->pts, p_block->i_pts );
243     }
244     else if( p_block->i_dts > VLC_TS_INVALID )
245     {
246         /* NB, davidf doesn't quite agree with this in general, it is ok
247          * for rawvideo since it is in order (ie pts=dts), however, it
248          * may not be ok for an out-of-order codec, so don't copy this
249          * without thinking */
250         date_Set( &p_sys->pts, p_block->i_dts );
251     }
252
253     if( p_block->i_buffer < p_sys->i_raw_size )
254     {
255         msg_Warn( p_dec, "invalid frame size (%zu < %zu)",
256                   p_block->i_buffer, p_sys->i_raw_size );
257
258         block_Release( p_block );
259         return NULL;
260     }
261
262     if( p_sys->b_packetizer )
263     {
264         p_buf = SendFrame( p_dec, p_block );
265     }
266     else
267     {
268         p_buf = DecodeFrame( p_dec, p_block );
269     }
270
271     /* Date management: 1 frame per packet */
272     date_Increment( &p_sys->pts, 1 );
273     *pp_block = NULL;
274
275     return p_buf;
276 }
277
278 /*****************************************************************************
279  * FillPicture:
280  *****************************************************************************/
281 static void FillPicture( decoder_t *p_dec, block_t *p_block, picture_t *p_pic )
282 {
283     int i_plane;
284     decoder_sys_t *p_sys = p_dec->p_sys;
285     uint8_t *p_src = p_block->p_buffer;
286
287     for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
288     {
289         int i_pitch = p_pic->p[i_plane].i_pitch;
290         int i_visible_pitch = p_sys->planes[i_plane].i_visible_pitch;
291         int i_visible_lines = p_sys->planes[i_plane].i_visible_lines;
292         uint8_t *p_dst = p_pic->p[i_plane].p_pixels;
293         uint8_t *p_dst_end = p_dst+i_pitch*i_visible_lines;
294
295         if( p_sys->b_invert )
296             for( p_dst_end -= i_pitch; p_dst <= p_dst_end;
297                  p_dst_end -= i_pitch, p_src += i_visible_pitch )
298                 memcpy( p_dst_end, p_src, i_visible_pitch );
299         else
300             for( ; p_dst < p_dst_end;
301                  p_dst += i_pitch, p_src += i_visible_pitch )
302                 memcpy( p_dst, p_src, i_visible_pitch );
303     }
304 }
305
306 /*****************************************************************************
307  * DecodeFrame: decodes a video frame.
308  *****************************************************************************/
309 static picture_t *DecodeFrame( decoder_t *p_dec, block_t *p_block )
310 {
311     decoder_sys_t *p_sys = p_dec->p_sys;
312     picture_t *p_pic;
313
314     /* Get a new picture */
315     p_pic = decoder_NewPicture( p_dec );
316     if( !p_pic )
317     {
318         block_Release( p_block );
319         return NULL;
320     }
321
322     FillPicture( p_dec, p_block, p_pic );
323
324     p_pic->date = date_Get( &p_sys->pts );
325     if( p_block->i_flags & BLOCK_FLAG_INTERLACED_MASK )
326     {
327         p_pic->b_progressive = false;
328         p_pic->i_nb_fields = 2;
329         if( p_block->i_flags & BLOCK_FLAG_TOP_FIELD_FIRST )
330             p_pic->b_top_field_first = true;
331         else
332             p_pic->b_top_field_first = false;
333     }
334     else
335         p_pic->b_progressive = true;
336
337     block_Release( p_block );
338     return p_pic;
339 }
340
341 /*****************************************************************************
342  * SendFrame: send a video frame to the stream output.
343  *****************************************************************************/
344 static block_t *SendFrame( decoder_t *p_dec, block_t *p_block )
345 {
346     decoder_sys_t *p_sys = p_dec->p_sys;
347
348     p_block->i_dts = p_block->i_pts = date_Get( &p_sys->pts );
349
350     if( p_sys->b_invert )
351     {
352         picture_t pic;
353         uint8_t *p_tmp, *p_pixels;
354         int i, j;
355
356         /* Fill in picture_t fields */
357         picture_Setup( &pic, &p_dec->fmt_out );
358
359         if( !pic.i_planes )
360         {
361             msg_Err( p_dec, "unsupported chroma" );
362             return p_block;
363         }
364
365         p_tmp = malloc( pic.p[0].i_pitch );
366         if( !p_tmp )
367             return p_block;
368         p_pixels = p_block->p_buffer;
369         for( i = 0; i < pic.i_planes; i++ )
370         {
371             int i_pitch = pic.p[i].i_pitch;
372             uint8_t *p_top = p_pixels;
373             uint8_t *p_bottom = p_pixels + i_pitch *
374                 (pic.p[i].i_visible_lines - 1);
375
376             for( j = 0; j < pic.p[i].i_visible_lines / 2; j++ )
377             {
378                 memcpy( p_tmp, p_bottom, pic.p[i].i_visible_pitch  );
379                 memcpy( p_bottom, p_top, pic.p[i].i_visible_pitch  );
380                 memcpy( p_top, p_tmp, pic.p[i].i_visible_pitch  );
381                 p_top += i_pitch;
382                 p_bottom -= i_pitch;
383             }
384
385             p_pixels += i_pitch * pic.p[i].i_lines;
386         }
387         free( p_tmp );
388     }
389
390     return p_block;
391 }
392
393 /*****************************************************************************
394  * CloseDecoder: decoder destruction
395  *****************************************************************************/
396 static void CloseDecoder( vlc_object_t *p_this )
397 {
398     decoder_t *p_dec = (decoder_t*)p_this;
399     free( p_dec->p_sys );
400 }