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