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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * mash.c: Video decoder using openmash codec implementations
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: mash.cpp 7397 2004-04-20 17:27:30Z sam $
  6.  *
  7.  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  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 <vlc/vout.h>
  29. #include <p64/p64.h>
  30. /*****************************************************************************
  31.  * decoder_sys_t : video decoder descriptor
  32.  *****************************************************************************/
  33. struct decoder_sys_t
  34. {
  35.     /*
  36.      * Common properties
  37.      */
  38.     mtime_t i_pts;
  39.     IntraP64Decoder *p_decoder;
  40.     vlc_bool_t b_inited;
  41.     int i_counter;
  42. };
  43. /****************************************************************************
  44.  * Local prototypes
  45.  ****************************************************************************/
  46. static int  OpenDecoder   ( vlc_object_t * );
  47. static void CloseDecoder  ( vlc_object_t * );
  48. static void *DecodeBlock  ( decoder_t *, block_t ** );
  49. #if 0
  50. static picture_t *DecodeFrame( decoder_t *, block_t * );
  51. static block_t   *SendFrame  ( decoder_t *, block_t * );
  52. #endif
  53. /*****************************************************************************
  54.  * Module descriptor
  55.  *****************************************************************************/
  56. vlc_module_begin();
  57.     set_description( _("Video decoder using openmash") );
  58.     set_capability( "decoder", 50 );
  59.     set_callbacks( OpenDecoder, CloseDecoder );
  60. vlc_module_end();
  61. /*****************************************************************************
  62.  * OpenDecoder: probe the decoder and return score
  63.  *****************************************************************************/
  64. static int OpenDecoder( vlc_object_t *p_this )
  65. {
  66.     decoder_t *p_dec = (decoder_t*)p_this;
  67.     decoder_sys_t *p_sys;
  68.     switch( p_dec->fmt_in.i_codec )
  69.     {
  70.         /* Planar YUV */
  71.         case VLC_FOURCC('h','2','6','1'):
  72.         case VLC_FOURCC('H','2','6','1'):
  73.             break;
  74.         default:
  75.             return VLC_EGENERIC;
  76.     }
  77.     /* Allocate the memory needed to store the decoder's structure */
  78.     if( ( p_dec->p_sys = p_sys =
  79.           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
  80.     {
  81.         msg_Err( p_dec, "out of memory" );
  82.         return VLC_EGENERIC;
  83.     }
  84.     /* Misc init */
  85.     p_sys->i_pts = 0;
  86.     p_sys->b_inited = VLC_FALSE;
  87.     p_sys->i_counter = 0;
  88.     /* Set output properties */
  89.     p_dec->fmt_out.i_cat = VIDEO_ES;
  90.     p_dec->fmt_out.i_codec = VLC_FOURCC('I','4','2','0');
  91.     /* Set callbacks */
  92.     p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
  93.         DecodeBlock;
  94.     p_sys->p_decoder = new IntraP64Decoder();
  95. //     foo->sync();
  96.     return VLC_SUCCESS;
  97. }
  98. /*****************************************************************************
  99.  * CloseDecoder: decoder destruction
  100.  *****************************************************************************/
  101. static void CloseDecoder( vlc_object_t *p_this )
  102. {
  103.     decoder_t *p_dec = (decoder_t*)p_this;
  104.     free( p_dec->p_sys );
  105. }
  106. /****************************************************************************
  107.  * DecodeBlock: the whole thing
  108.  ****************************************************************************
  109.  * This function must be fed with complete frames.
  110.  ****************************************************************************/
  111. static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
  112. {
  113.     decoder_sys_t *p_sys = p_dec->p_sys;
  114.     block_t *p_block;
  115.     picture_t *p_pic;
  116.     uint32_t i_video_header;
  117.     uint8_t *p_frame;
  118.     int cc, sbit, ebit, mba, gob, quant, mvdh, mvdv;
  119.     int i_width, i_height;
  120.     if( !pp_block || !*pp_block ) return NULL;
  121.     p_block = *pp_block;
  122.     if( !p_sys->i_pts && !p_block->i_pts && !p_block->i_dts )
  123.     {
  124.         /* We've just started the stream, wait for the first PTS. */
  125.         block_Release( p_block );
  126.         return NULL;
  127.     }
  128.     /* Date management */
  129.     if( p_block->i_pts > 0 || p_block->i_dts > 0 )
  130.     {
  131.         if( p_block->i_pts > 0 ) p_sys->i_pts = p_block->i_pts;
  132.         else if( p_block->i_dts > 0 ) p_sys->i_pts = p_block->i_dts;
  133.     }
  134.     i_video_header = *(uint32_t*)p_block->p_buffer; /* yes, it is native endian */
  135.     sbit = i_video_header >> 29; /* start bit position */
  136.     ebit = (i_video_header >> 26) & 7; /* end bit position */
  137.     msg_Dbg( p_dec, "sbit, ebit: %d,%d", sbit, ebit );
  138.     gob = (i_video_header >> 20) & 0xf; /* GOB number */
  139.     if( gob > 12 )
  140.     {
  141.         msg_Warn( p_dec, "invalid gob, buggy vic streamer?");
  142.     }
  143.     mba = (i_video_header >> 15) & 0x1f; /* Macroblock address predictor */
  144.     quant = (i_video_header >> 10) & 0x1f; /* quantizer */
  145.     mvdh = (i_video_header >> 5) & 0x1f; /* horizontal motion vector data */
  146.     mvdv = i_video_header & 0x1f; /* vertical motion vector data */
  147.     cc = p_block->i_buffer - 4;
  148.     msg_Dbg( p_dec, "packet size %d", cc );
  149.     
  150.     /* Find out p_vdec->i_raw_size */
  151.     p_sys->p_decoder->decode( p_block->p_buffer + 4 /*bp?*/,
  152.                               cc /*cc?*/,
  153.                               sbit /*sbit?*/,
  154.                               ebit /*ebit?*/,
  155.                               mba /* mba?*/,
  156.                               gob /* gob?*/,
  157.                               quant /* quant?*/,
  158.                               mvdh /* mvdh?*/,
  159.                               mvdv /* mvdv?*/ );
  160.     i_width = p_sys->p_decoder->width();
  161.     i_height = p_sys->p_decoder->height();
  162.     if( !p_sys->b_inited )
  163.     {
  164.         msg_Dbg( p_dec, "video size is perhaps %dx%d", i_width,
  165.                   i_height);
  166.         vout_InitFormat( &p_dec->fmt_out.video, VLC_FOURCC('I','4','2','0'),
  167.                          i_width, i_height,
  168.                          VOUT_ASPECT_FACTOR * i_width / i_height );
  169.         p_sys->b_inited = VLC_TRUE;
  170.     }
  171.     p_pic = NULL;
  172.     p_sys->i_counter++;
  173. //    p_sys->p_decoder->sync();
  174.     if( p_block->i_flags & BLOCK_FLAG_END_OF_FRAME )
  175.     {
  176.         p_pic = p_dec->pf_vout_buffer_new( p_dec );
  177.         if( !p_pic )
  178.         {
  179.             block_Release( p_block );
  180.             return NULL;
  181.         }
  182.         p_sys->p_decoder->sync();
  183.         p_sys->i_counter = 0;
  184.         p_frame = p_sys->p_decoder->frame();
  185.         p_dec->p_vlc->pf_memcpy( p_pic->p[0].p_pixels, p_frame, i_width*i_height );
  186.         p_frame += i_width * i_height;
  187.         p_dec->p_vlc->pf_memcpy( p_pic->p[1].p_pixels, p_frame, i_width*i_height/4 );
  188.         p_frame += i_width * i_height/4;
  189.         p_dec->p_vlc->pf_memcpy( p_pic->p[2].p_pixels, p_frame, i_width*i_height/4 );
  190.         p_pic->date = p_sys->i_pts;
  191.     }
  192.     block_Release( p_block);
  193.     *pp_block = NULL;
  194.     return p_pic;
  195. //    return NULL;
  196. }