tarkin.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:10k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * tarkin.c: tarkin decoder module making use of libtarkin.
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2003 VideoLAN
  5.  * $Id: tarkin.c 8551 2004-08-28 17:36:02Z gbazin $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  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.  * Preamble
  25.  *****************************************************************************/
  26. #include <vlc/vlc.h>
  27. #include <vlc/decoder.h>
  28. #include <ogg/ogg.h>
  29. /* FIXME */
  30. // use 16 bit signed integers as wavelet coefficients
  31. #define TYPE int16_t
  32. // we'll actually use TYPE_BITS bits of type (e.g. 9 magnitude + 1 sign)
  33. #define TYPE_BITS 10
  34. // use the rle entropy coder
  35. #define RLECODER 1
  36. #include <tarkin.h>
  37. /*****************************************************************************
  38.  * decoder_sys_t : tarkin decoder descriptor
  39.  *****************************************************************************/
  40. struct decoder_sys_t
  41. {
  42.     /*
  43.      * Tarkin properties
  44.      */
  45.     TarkinStream *tarkin_stream;
  46.     TarkinInfo       ti;                        /* tarkin bitstream settings */
  47.     TarkinComment    tc;                   /* tarkin bitstream user comments */
  48.     TarkinTime       tarkdate;
  49.     int i_headers;
  50.     mtime_t i_pts;
  51. };
  52. /*****************************************************************************
  53.  * Local prototypes
  54.  *****************************************************************************/
  55. static int  OpenDecoder  ( vlc_object_t * );
  56. static void CloseDecoder ( vlc_object_t * );
  57. static void *DecodeBlock ( decoder_t *, block_t ** );
  58. static picture_t *DecodePacket ( decoder_t *, block_t **, ogg_packet * );
  59. static void tarkin_CopyPicture( decoder_t *, picture_t *, uint8_t *, int );
  60. /*****************************************************************************
  61.  * Module descriptor
  62.  *****************************************************************************/
  63. vlc_module_begin();
  64.     set_description( _("Tarkin decoder module") );
  65.     set_capability( "decoder", 100 );
  66.     set_callbacks( OpenDecoder, CloseDecoder );
  67.     add_shortcut( "tarkin" );
  68. vlc_module_end();
  69. /*****************************************************************************
  70.  * OpenDecoder: probe the decoder and return score
  71.  *****************************************************************************/
  72. static int OpenDecoder( vlc_object_t *p_this )
  73. {
  74.     decoder_t *p_dec = (decoder_t*)p_this;
  75.     decoder_sys_t *p_sys;
  76.     if( p_dec->fmt_in.i_codec != VLC_FOURCC('t','a','r','k') )
  77.     {
  78.         return VLC_EGENERIC;
  79.     }
  80.     /* Allocate the memory needed to store the decoder's structure */
  81.     if( ( p_dec->p_sys = p_sys =
  82.           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
  83.     {
  84.         msg_Err( p_dec, "out of memory" );
  85.         return VLC_EGENERIC;
  86.     }
  87.     /* Set output properties */
  88.     p_dec->fmt_out.i_cat = VIDEO_ES;
  89.     p_sys->i_headers = 0;
  90.     /* Set callbacks */
  91.     p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
  92.         DecodeBlock;
  93.     p_dec->pf_packetize    = (block_t *(*)(decoder_t *, block_t **))
  94.         DecodeBlock;
  95.     /* Init supporting Tarkin structures needed in header parsing */
  96.     p_sys->tarkin_stream = tarkin_stream_new();
  97.     tarkin_info_init( &p_sys->ti );
  98.     tarkin_comment_init( &p_sys->tc );
  99.     return VLC_SUCCESS;
  100. }
  101. /****************************************************************************
  102.  * DecodeBlock: the whole thing
  103.  ****************************************************************************
  104.  * This function must be fed with ogg packets.
  105.  ****************************************************************************/
  106. static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
  107. {
  108.     decoder_sys_t *p_sys = p_dec->p_sys;
  109.     block_t *p_block;
  110.     ogg_packet oggpacket;
  111.     if( !pp_block ) return NULL;
  112.     if( *pp_block )
  113.     {
  114.         /* Block to Ogg packet */
  115.         oggpacket.packet = (*pp_block)->p_buffer;
  116.         oggpacket.bytes = (*pp_block)->i_buffer;
  117.     }
  118.     else
  119.     {
  120.         /* Block to Ogg packet */
  121.         oggpacket.packet = NULL;
  122.         oggpacket.bytes = 0;
  123.     }
  124.     p_block = *pp_block;
  125.     oggpacket.granulepos = -1;
  126.     oggpacket.b_o_s = 0;
  127.     oggpacket.e_o_s = 0;
  128.     oggpacket.packetno = 0;
  129.     if( p_sys->i_headers == 0 )
  130.     {
  131.         /* Take care of the initial Tarkin header */
  132.         oggpacket.b_o_s = 1; /* yes this actually is a b_o_s packet :) */
  133.         if( tarkin_synthesis_headerin( &p_sys->ti, &p_sys->tc, &oggpacket )
  134.             < 0 )
  135.         {
  136.             msg_Err( p_dec, "This bitstream does not contain Tarkin "
  137.                      "video data.");
  138.             block_Release( p_block );
  139.             return NULL;
  140.         }
  141.         p_sys->i_headers++;
  142.         block_Release( p_block );
  143.         return NULL;
  144.     }
  145.     if( p_sys->i_headers == 1 )
  146.     {
  147.         if( tarkin_synthesis_headerin( &p_sys->ti, &p_sys->tc, &oggpacket )
  148.             < 0 )
  149.         {
  150.             msg_Err( p_dec, "2nd Tarkin header is corrupted." );
  151.             block_Release( p_block );
  152.             return NULL;
  153.         }
  154.         p_sys->i_headers++;
  155.         block_Release( p_block );
  156.         return NULL;
  157.     }
  158.     if( p_sys->i_headers == 2 )
  159.     {
  160.         if( tarkin_synthesis_headerin( &p_sys->ti, &p_sys->tc, &oggpacket )
  161.             < 0 )
  162.         {
  163.             msg_Err( p_dec, "3rd Tarkin header is corrupted." );
  164.             block_Release( p_block );
  165.             return NULL;
  166.         }
  167.         p_sys->i_headers++;
  168.         /* Initialize the tarkin decoder */
  169.         tarkin_synthesis_init( p_sys->tarkin_stream, &p_sys->ti );
  170.         msg_Err( p_dec, "Tarkin codec initialized");
  171.         block_Release( p_block );
  172.         return NULL;
  173.     }
  174.     return DecodePacket( p_dec, pp_block, &oggpacket );
  175. }
  176. /*****************************************************************************
  177.  * DecodePacket: decodes a Tarkin packet.
  178.  *****************************************************************************/
  179. static picture_t *DecodePacket( decoder_t *p_dec, block_t **pp_block,
  180.                                 ogg_packet *p_oggpacket )
  181. {
  182.     decoder_sys_t *p_sys = p_dec->p_sys;
  183.     uint8_t *rgb;
  184.     if( p_oggpacket->bytes )
  185.     {
  186.         tarkin_synthesis_packetin( p_sys->tarkin_stream, p_oggpacket );
  187.         //block_Release( *pp_block ); /* FIXME duplicate packet */
  188.         *pp_block = NULL;
  189.     }
  190.     if( tarkin_synthesis_frameout( p_sys->tarkin_stream,
  191.                                    &rgb, 0, &p_sys->tarkdate ) == 0 )
  192.     {
  193.         int i_width, i_height, i_chroma, i_stride;
  194.         picture_t *p_pic;
  195.         msg_Err( p_dec, "Tarkin frame decoded" );
  196.         i_width = p_sys->tarkin_stream->layer->desc.width;
  197.         i_height = p_sys->tarkin_stream->layer->desc.height;
  198.         switch( p_sys->tarkin_stream->layer->desc.format )
  199.         {
  200.         case TARKIN_RGB24:
  201.             i_chroma = VLC_FOURCC('R','V','2','4');
  202.             i_stride = i_width * 3;
  203.             break;
  204.         case TARKIN_RGB32:
  205.             i_chroma = VLC_FOURCC('R','V','3','2');
  206.             i_stride = i_width * 4;
  207.             break;
  208.         case TARKIN_RGBA:
  209.             i_chroma = VLC_FOURCC('R','G','B','A');
  210.             i_stride = i_width * 4;
  211.             break;
  212.         default:
  213.             i_chroma = VLC_FOURCC('I','4','2','0');
  214.             i_stride = i_width;
  215.             break;
  216.         }
  217.         /* Set output properties */
  218.         p_dec->fmt_out.video.i_width = i_width;
  219.         p_dec->fmt_out.video.i_height = i_height;
  220.         p_dec->fmt_out.video.i_aspect =
  221.             VOUT_ASPECT_FACTOR * i_width / i_height;
  222.         p_dec->fmt_out.i_codec = i_chroma;
  223.         /* Get a new picture */
  224.         if( (p_pic = p_dec->pf_vout_buffer_new( p_dec )) )
  225.         {
  226.             tarkin_CopyPicture( p_dec, p_pic, rgb, i_stride );
  227.             tarkin_synthesis_freeframe( p_sys->tarkin_stream, rgb );
  228.             p_pic->date = mdate() + DEFAULT_PTS_DELAY/*i_pts*/;
  229.             return p_pic;
  230.         }
  231.     }
  232.     return NULL;
  233. }
  234. /*****************************************************************************
  235.  * CloseDecoder: tarkin decoder destruction
  236.  *****************************************************************************/
  237. static void CloseDecoder( vlc_object_t *p_this )
  238. {
  239.     decoder_t *p_dec = (decoder_t *)p_this;
  240.     decoder_sys_t *p_sys = p_dec->p_sys;
  241.     tarkin_stream_destroy( p_sys->tarkin_stream );
  242.     free( p_sys );
  243. }
  244. /*****************************************************************************
  245.  * tarkin_CopyPicture: copy a picture from tarkin internal buffers to a
  246.  *                     picture_t structure.
  247.  *****************************************************************************/
  248. static void tarkin_CopyPicture( decoder_t *p_dec, picture_t *p_pic,
  249.                                 uint8_t *p_src, int i_pitch )
  250. {
  251.     int i_plane, i_line, i_src_stride, i_dst_stride;
  252.     uint8_t *p_dst;
  253.     for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
  254.     {
  255.         p_dst = p_pic->p[i_plane].p_pixels;
  256.         i_dst_stride = p_pic->p[i_plane].i_pitch;
  257.         i_src_stride = i_pitch;
  258.         for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines; i_line++ )
  259.         {
  260.             p_dec->p_vlc->pf_memcpy( p_dst, p_src, i_src_stride );
  261.             p_src += i_src_stride;
  262.             p_dst += i_dst_stride;
  263.         }
  264.     }
  265. }