]> git.sesse.net Git - vlc/blob - modules/codec/rawvideo.c
* ALL: use i_visible_lines in plane_t.
[vlc] / modules / codec / rawvideo.c
1 /*****************************************************************************
2  * rawvideo.c: Pseudo video decoder/packetizer for raw video data
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 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
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <vlc/vlc.h>
28 #include <vlc/decoder.h>
29 #include <vlc/vout.h>
30
31 /*****************************************************************************
32  * decoder_sys_t : raw video decoder descriptor
33  *****************************************************************************/
34 struct decoder_sys_t
35 {
36     /* Module mode */
37     vlc_bool_t b_packetizer;
38
39     /*
40      * Input properties
41      */
42     int i_raw_size;
43
44     /*
45      * Common properties
46      */
47     mtime_t i_pts;
48
49 };
50
51 /****************************************************************************
52  * Local prototypes
53  ****************************************************************************/
54 static int  OpenDecoder   ( vlc_object_t * );
55 static int  OpenPacketizer( vlc_object_t * );
56 static void CloseDecoder  ( vlc_object_t * );
57
58 static void *DecodeBlock  ( decoder_t *, block_t ** );
59
60 static picture_t *DecodeFrame( decoder_t *, block_t * );
61 static block_t   *SendFrame  ( decoder_t *, block_t * );
62
63 /*****************************************************************************
64  * Module descriptor
65  *****************************************************************************/
66 vlc_module_begin();
67     set_description( _("Pseudo raw video decoder") );
68     set_capability( "decoder", 50 );
69     set_callbacks( OpenDecoder, CloseDecoder );
70
71     add_submodule();
72     set_description( _("Pseudo raw video packetizer") );
73     set_capability( "packetizer", 100 );
74     set_callbacks( OpenPacketizer, CloseDecoder );
75 vlc_module_end();
76
77 /*****************************************************************************
78  * OpenDecoder: probe the decoder and return score
79  *****************************************************************************/
80 static int OpenDecoder( vlc_object_t *p_this )
81 {
82     decoder_t *p_dec = (decoder_t*)p_this;
83     decoder_sys_t *p_sys;
84
85     switch( p_dec->fmt_in.i_codec )
86     {
87         /* Planar YUV */
88         case VLC_FOURCC('I','4','4','4'):
89         case VLC_FOURCC('I','4','2','2'):
90         case VLC_FOURCC('I','4','2','0'):
91         case VLC_FOURCC('Y','V','1','2'):
92         case VLC_FOURCC('I','Y','U','V'):
93         case VLC_FOURCC('I','4','1','1'):
94         case VLC_FOURCC('I','4','1','0'):
95         case VLC_FOURCC('Y','V','U','9'):
96
97         /* Packed YUV */
98         case VLC_FOURCC('Y','U','Y','2'):
99         case VLC_FOURCC('U','Y','V','Y'):
100
101         /* RGB */
102         case VLC_FOURCC('R','V','3','2'):
103         case VLC_FOURCC('R','V','2','4'):
104         case VLC_FOURCC('R','V','1','6'):
105         case VLC_FOURCC('R','V','1','5'):
106             break;
107
108         default:
109             return VLC_EGENERIC;
110     }
111
112     /* Allocate the memory needed to store the decoder's structure */
113     if( ( p_dec->p_sys = p_sys =
114           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
115     {
116         msg_Err( p_dec, "out of memory" );
117         return VLC_EGENERIC;
118     }
119     /* Misc init */
120     p_dec->p_sys->b_packetizer = VLC_FALSE;
121     p_sys->i_pts = 0;
122
123     if( p_dec->fmt_in.video.i_width <= 0 ||
124         p_dec->fmt_in.video.i_height <= 0 )
125     {
126         msg_Err( p_dec, "invalid display size %dx%d",
127                  p_dec->fmt_in.video.i_width, p_dec->fmt_in.video.i_height );
128         return VLC_EGENERIC;
129     }
130
131     /* Find out p_vdec->i_raw_size */
132     vout_InitFormat( &p_dec->fmt_out.video, p_dec->fmt_in.i_codec,
133                      p_dec->fmt_in.video.i_width,
134                      p_dec->fmt_in.video.i_height,
135                      p_dec->fmt_in.video.i_aspect );
136     p_sys->i_raw_size = p_dec->fmt_out.video.i_bits_per_pixel *
137         p_dec->fmt_out.video.i_width * p_dec->fmt_out.video.i_height / 8;
138
139     /* Set output properties */
140     p_dec->fmt_out.i_cat = VIDEO_ES;
141     p_dec->fmt_out.i_codec = p_dec->fmt_in.i_codec;
142     //if( !p_dec->fmt_in.video.i_aspect )
143     {
144         p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR *
145             p_dec->fmt_out.video.i_width / p_dec->fmt_out.video.i_height;
146     }
147
148     /* Set callbacks */
149     p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
150         DecodeBlock;
151     p_dec->pf_packetize    = (block_t *(*)(decoder_t *, block_t **))
152         DecodeBlock;
153
154     return VLC_SUCCESS;
155 }
156
157 static int OpenPacketizer( vlc_object_t *p_this )
158 {
159     decoder_t *p_dec = (decoder_t*)p_this;
160
161     int i_ret = OpenDecoder( p_this );
162
163     if( i_ret == VLC_SUCCESS ) p_dec->p_sys->b_packetizer = VLC_TRUE;
164
165     return i_ret;
166 }
167
168 /****************************************************************************
169  * DecodeBlock: the whole thing
170  ****************************************************************************
171  * This function must be fed with complete frames.
172  ****************************************************************************/
173 static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
174 {
175     decoder_sys_t *p_sys = p_dec->p_sys;
176     block_t *p_block;
177     void *p_buf;
178
179     if( !pp_block || !*pp_block ) return NULL;
180
181     p_block = *pp_block;
182
183     if( !p_sys->i_pts && !p_block->i_pts && !p_block->i_dts )
184     {
185         /* We've just started the stream, wait for the first PTS. */
186         block_Release( p_block );
187         return NULL;
188     }
189
190     /* Date management */
191     if( p_block->i_pts > 0 || p_block->i_dts > 0 )
192     {
193         if( p_block->i_pts > 0 ) p_sys->i_pts = p_block->i_pts;
194         else if( p_block->i_dts > 0 ) p_sys->i_pts = p_block->i_dts;
195     }
196
197     if( p_block->i_buffer < p_sys->i_raw_size )
198     {
199         msg_Warn( p_dec, "invalid frame size (%d < %d)",
200                   p_block->i_buffer, p_sys->i_raw_size );
201
202         block_Release( p_block );
203         return NULL;
204     }
205
206     if( p_sys->b_packetizer )
207     {
208         p_buf = SendFrame( p_dec, p_block );
209     }
210     else
211     {
212         p_buf = DecodeFrame( p_dec, p_block );
213     }
214
215     /* Date management: 1 frame per packet */
216     p_sys->i_pts += ( I64C(1000000) * 1.0 / 25 /*FIXME*/ );
217     *pp_block = NULL;
218
219     return p_buf;
220 }
221
222 /*****************************************************************************
223  * FillPicture:
224  *****************************************************************************/
225 static void FillPicture( decoder_t *p_dec, block_t *p_block, picture_t *p_pic )
226 {
227     uint8_t *p_src, *p_dst;
228     int i_src, i_plane, i_line, i_width;
229
230     p_src  = p_block->p_buffer;
231     i_src = p_block->i_buffer;
232
233     for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
234     {
235         p_dst = p_pic->p[i_plane].p_pixels;
236         i_width = p_pic->p[i_plane].i_visible_pitch;
237
238         for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines; i_line++ )
239         {
240             p_dec->p_vlc->pf_memcpy( p_dst, p_src, i_width );
241             p_src += i_width;
242             p_dst += p_pic->p[i_plane].i_pitch;
243         }
244     }
245 }
246
247 /*****************************************************************************
248  * DecodeFrame: decodes a video frame.
249  *****************************************************************************/
250 static picture_t *DecodeFrame( decoder_t *p_dec, block_t *p_block )
251 {
252     decoder_sys_t *p_sys = p_dec->p_sys;
253     picture_t *p_pic;
254
255     /* Get a new picture */
256     p_pic = p_dec->pf_vout_buffer_new( p_dec );
257     if( !p_pic )
258     {
259         block_Release( p_block );
260         return NULL;
261     }
262
263     FillPicture( p_dec, p_block, p_pic );
264
265     p_pic->date = p_sys->i_pts;
266
267     block_Release( p_block );
268     return p_pic;
269 }
270
271 /*****************************************************************************
272  * SendFrame: send a video frame to the stream output.
273  *****************************************************************************/
274 static block_t *SendFrame( decoder_t *p_dec, block_t *p_block )
275 {
276     decoder_sys_t *p_sys = p_dec->p_sys;
277
278     p_block->i_dts = p_block->i_pts = p_sys->i_pts;
279
280     return p_block;
281 }
282
283 /*****************************************************************************
284  * CloseDecoder: decoder destruction
285  *****************************************************************************/
286 static void CloseDecoder( vlc_object_t *p_this )
287 {
288     decoder_t *p_dec = (decoder_t*)p_this;
289     free( p_dec->p_sys );
290 }