1 /*****************************************************************************
2 * tarkin.c: tarkin decoder module making use of libtarkin.
3 *****************************************************************************
4 * Copyright (C) 2001-2003 the VideoLAN team
7 * Authors: Gildas Bazin <gbazin@netcourrier.com>
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
26 *****************************************************************************/
32 #include <vlc_codec.h>
37 // use 16 bit signed integers as wavelet coefficients
39 // we'll actually use TYPE_BITS bits of type (e.g. 9 magnitude + 1 sign)
41 // use the rle entropy coder
46 /*****************************************************************************
47 * decoder_sys_t : tarkin decoder descriptor
48 *****************************************************************************/
54 TarkinStream *tarkin_stream;
56 TarkinInfo ti; /* tarkin bitstream settings */
57 TarkinComment tc; /* tarkin bitstream user comments */
64 /*****************************************************************************
66 *****************************************************************************/
67 static int OpenDecoder ( vlc_object_t * );
68 static void CloseDecoder ( vlc_object_t * );
70 static void *DecodeBlock ( decoder_t *, block_t ** );
71 static picture_t *DecodePacket ( decoder_t *, block_t **, ogg_packet * );
73 static void tarkin_CopyPicture( decoder_t *, picture_t *, uint8_t *, int );
75 /*****************************************************************************
77 *****************************************************************************/
79 set_description( _("Tarkin decoder module") );
80 set_capability( "decoder", 100 );
81 set_category( CAT_INPUT );
82 set_subcategory( SUBCAT_INPUT_VCODEC );
83 set_callbacks( OpenDecoder, CloseDecoder );
84 add_shortcut( "tarkin" );
87 /*****************************************************************************
88 * OpenDecoder: probe the decoder and return score
89 *****************************************************************************/
90 static int OpenDecoder( vlc_object_t *p_this )
92 decoder_t *p_dec = (decoder_t*)p_this;
95 if( p_dec->fmt_in.i_codec != VLC_FOURCC('t','a','r','k') )
100 /* Allocate the memory needed to store the decoder's structure */
101 if( ( p_dec->p_sys = p_sys =
102 (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
104 msg_Err( p_dec, "out of memory" );
108 /* Set output properties */
109 p_dec->fmt_out.i_cat = VIDEO_ES;
110 p_sys->i_headers = 0;
113 p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
115 p_dec->pf_packetize = (block_t *(*)(decoder_t *, block_t **))
118 /* Init supporting Tarkin structures needed in header parsing */
119 p_sys->tarkin_stream = tarkin_stream_new();
120 tarkin_info_init( &p_sys->ti );
121 tarkin_comment_init( &p_sys->tc );
126 /****************************************************************************
127 * DecodeBlock: the whole thing
128 ****************************************************************************
129 * This function must be fed with ogg packets.
130 ****************************************************************************/
131 static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
133 decoder_sys_t *p_sys = p_dec->p_sys;
135 ogg_packet oggpacket;
137 if( !pp_block ) return NULL;
141 /* Block to Ogg packet */
142 oggpacket.packet = (*pp_block)->p_buffer;
143 oggpacket.bytes = (*pp_block)->i_buffer;
147 /* Block to Ogg packet */
148 oggpacket.packet = NULL;
154 oggpacket.granulepos = -1;
157 oggpacket.packetno = 0;
159 if( p_sys->i_headers == 0 )
161 /* Take care of the initial Tarkin header */
163 oggpacket.b_o_s = 1; /* yes this actually is a b_o_s packet :) */
164 if( tarkin_synthesis_headerin( &p_sys->ti, &p_sys->tc, &oggpacket )
167 msg_Err( p_dec, "this bitstream does not contain Tarkin "
169 block_Release( p_block );
174 block_Release( p_block );
178 if( p_sys->i_headers == 1 )
180 if( tarkin_synthesis_headerin( &p_sys->ti, &p_sys->tc, &oggpacket )
183 msg_Err( p_dec, "2nd Tarkin header is corrupted." );
184 block_Release( p_block );
188 block_Release( p_block );
192 if( p_sys->i_headers == 2 )
194 if( tarkin_synthesis_headerin( &p_sys->ti, &p_sys->tc, &oggpacket )
197 msg_Err( p_dec, "3rd Tarkin header is corrupted." );
198 block_Release( p_block );
203 /* Initialize the tarkin decoder */
204 tarkin_synthesis_init( p_sys->tarkin_stream, &p_sys->ti );
206 msg_Err( p_dec, "Tarkin codec initialized");
208 block_Release( p_block );
212 return DecodePacket( p_dec, pp_block, &oggpacket );
215 /*****************************************************************************
216 * DecodePacket: decodes a Tarkin packet.
217 *****************************************************************************/
218 static picture_t *DecodePacket( decoder_t *p_dec, block_t **pp_block,
219 ogg_packet *p_oggpacket )
221 decoder_sys_t *p_sys = p_dec->p_sys;
224 if( p_oggpacket->bytes )
226 tarkin_synthesis_packetin( p_sys->tarkin_stream, p_oggpacket );
227 //block_Release( *pp_block ); /* FIXME duplicate packet */
231 if( tarkin_synthesis_frameout( p_sys->tarkin_stream,
232 &rgb, 0, &p_sys->tarkdate ) == 0 )
234 int i_width, i_height, i_chroma, i_stride;
237 msg_Err( p_dec, "Tarkin frame decoded" );
239 i_width = p_sys->tarkin_stream->layer->desc.width;
240 i_height = p_sys->tarkin_stream->layer->desc.height;
242 switch( p_sys->tarkin_stream->layer->desc.format )
245 i_chroma = VLC_FOURCC('R','V','2','4');
246 i_stride = i_width * 3;
249 i_chroma = VLC_FOURCC('R','V','3','2');
250 i_stride = i_width * 4;
253 i_chroma = VLC_FOURCC('R','G','B','A');
254 i_stride = i_width * 4;
257 i_chroma = VLC_FOURCC('I','4','2','0');
262 /* Set output properties */
263 p_dec->fmt_out.video.i_width = i_width;
264 p_dec->fmt_out.video.i_height = i_height;
266 p_dec->fmt_out.video.i_aspect =
267 VOUT_ASPECT_FACTOR * i_width / i_height;
268 p_dec->fmt_out.i_codec = i_chroma;
270 /* Get a new picture */
271 if( (p_pic = p_dec->pf_vout_buffer_new( p_dec )) )
273 tarkin_CopyPicture( p_dec, p_pic, rgb, i_stride );
275 tarkin_synthesis_freeframe( p_sys->tarkin_stream, rgb );
277 p_pic->date = mdate() + DEFAULT_PTS_DELAY/*i_pts*/;
286 /*****************************************************************************
287 * CloseDecoder: tarkin decoder destruction
288 *****************************************************************************/
289 static void CloseDecoder( vlc_object_t *p_this )
291 decoder_t *p_dec = (decoder_t *)p_this;
292 decoder_sys_t *p_sys = p_dec->p_sys;
294 tarkin_stream_destroy( p_sys->tarkin_stream );
299 /*****************************************************************************
300 * tarkin_CopyPicture: copy a picture from tarkin internal buffers to a
301 * picture_t structure.
302 *****************************************************************************/
303 static void tarkin_CopyPicture( decoder_t *p_dec, picture_t *p_pic,
304 uint8_t *p_src, int i_pitch )
306 int i_plane, i_line, i_src_stride, i_dst_stride;
309 for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
311 p_dst = p_pic->p[i_plane].p_pixels;
312 i_dst_stride = p_pic->p[i_plane].i_pitch;
313 i_src_stride = i_pitch;
315 for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines; i_line++ )
317 p_dec->p_libvlc->pf_memcpy( p_dst, p_src, i_src_stride );
319 p_src += i_src_stride;
320 p_dst += i_dst_stride;