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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * mpeg4video.c: mpeg 4 video packetizer
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 VideoLAN
  5.  * $Id: mpeg4video.c 7338 2004-04-13 10:52:29Z gbazin $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Eric Petit <titer@videolan.org>
  9.  *          Gildas Bazin <gbazin@netcourrier.com>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Preamble
  27.  *****************************************************************************/
  28. #include <stdlib.h>                                      /* malloc(), free() */
  29. #include <vlc/vlc.h>
  30. #include <vlc/decoder.h>
  31. #include <vlc/sout.h>
  32. #include "vlc_bits.h"
  33. /*****************************************************************************
  34.  * Module descriptor
  35.  *****************************************************************************/
  36. static int  Open ( vlc_object_t * );
  37. static void Close( vlc_object_t * );
  38. vlc_module_begin();
  39.     set_description( _("MPEG4 video packetizer") );
  40.     set_capability( "packetizer", 50 );
  41.     set_callbacks( Open, Close );
  42. vlc_module_end();
  43. /****************************************************************************
  44.  * Local prototypes
  45.  ****************************************************************************/
  46. static block_t *Packetize( decoder_t *, block_t ** );
  47. struct decoder_sys_t
  48. {
  49.     /*
  50.      * Common properties
  51.      */
  52.     mtime_t i_pts;
  53.     mtime_t i_dts;
  54.     vlc_bool_t  b_vop;
  55.     int         i_buffer;
  56.     int         i_buffer_size;
  57.     uint8_t     *p_buffer;
  58.     unsigned int i_flags;
  59.     vlc_bool_t  b_frame;
  60. };
  61. static int m4v_FindStartCode( uint8_t **pp_start, uint8_t *p_end );
  62. static int m4v_VOLParse( es_format_t *fmt, uint8_t *p_vol, int i_vol );
  63. #define VIDEO_OBJECT_MASK                       0x01f
  64. #define VIDEO_OBJECT_LAYER_MASK                 0x00f
  65. #define VIDEO_OBJECT_START_CODE                 0x100
  66. #define VIDEO_OBJECT_LAYER_START_CODE           0x120
  67. #define VISUAL_OBJECT_SEQUENCE_START_CODE       0x1b0
  68. #define VISUAL_OBJECT_SEQUENCE_END_CODE         0x1b1
  69. #define USER_DATA_START_CODE                    0x1b2
  70. #define GROUP_OF_VOP_START_CODE                 0x1b3
  71. #define VIDEO_SESSION_ERROR_CODE                0x1b4
  72. #define VISUAL_OBJECT_START_CODE                0x1b5
  73. #define VOP_START_CODE                          0x1b6
  74. #define FACE_OBJECT_START_CODE                  0x1ba
  75. #define FACE_OBJECT_PLANE_START_CODE            0x1bb
  76. #define MESH_OBJECT_START_CODE                  0x1bc
  77. #define MESH_OBJECT_PLANE_START_CODE            0x1bd
  78. #define STILL_TEXTURE_OBJECT_START_CODE         0x1be
  79. #define TEXTURE_SPATIAL_LAYER_START_CODE        0x1bf
  80. #define TEXTURE_SNR_LAYER_START_CODE            0x1c0
  81. /*****************************************************************************
  82.  * Open: probe the packetizer and return score
  83.  *****************************************************************************/
  84. static int Open( vlc_object_t *p_this )
  85. {
  86.     decoder_t     *p_dec = (decoder_t*)p_this;
  87.     decoder_sys_t *p_sys;
  88.     switch( p_dec->fmt_in.i_codec )
  89.     {
  90.         case VLC_FOURCC( 'm', '4', 's', '2'):
  91.         case VLC_FOURCC( 'M', '4', 'S', '2'):
  92.         case VLC_FOURCC( 'm', 'p', '4', 's'):
  93.         case VLC_FOURCC( 'M', 'P', '4', 'S'):
  94.         case VLC_FOURCC( 'm', 'p', '4', 'v'):
  95.         case VLC_FOURCC( 'D', 'I', 'V', 'X'):
  96.         case VLC_FOURCC( 'd', 'i', 'v', 'x'):
  97.         case VLC_FOURCC( 'X', 'V', 'I', 'D'):
  98.         case VLC_FOURCC( 'X', 'v', 'i', 'D'):
  99.         case VLC_FOURCC( 'x', 'v', 'i', 'd'):
  100.         case VLC_FOURCC( 'D', 'X', '5', '0'):
  101.         case VLC_FOURCC( 'd', 'x', '5', '0'):
  102.         case VLC_FOURCC( 0x04, 0,   0,   0):
  103.         case VLC_FOURCC( '3', 'I', 'V', '2'):
  104.         case VLC_FOURCC( 'm', '4', 'c', 'c'):
  105.         case VLC_FOURCC( 'M', '4', 'C', 'C'):
  106.             break;
  107.         default:
  108.             return VLC_EGENERIC;
  109.     }
  110.     /* Allocate the memory needed to store the decoder's structure */
  111.     if( ( p_dec->p_sys = p_sys = malloc( sizeof(decoder_sys_t) ) ) == NULL )
  112.     {
  113.         msg_Err( p_dec, "out of memory" );
  114.         return VLC_EGENERIC;
  115.     }
  116.     p_sys->i_pts = 0;
  117.     p_sys->i_dts = 0;
  118.     p_sys->b_vop = VLC_FALSE;
  119.     p_sys->i_buffer = 0;
  120.     p_sys->i_buffer_size = 0;
  121.     p_sys->p_buffer = 0;
  122.     p_sys->i_flags = 0;
  123.     p_sys->b_frame = VLC_FALSE;
  124.     /* Setup properties */
  125.     es_format_Copy( &p_dec->fmt_out, &p_dec->fmt_in );
  126.     p_dec->fmt_out.i_codec = VLC_FOURCC( 'm', 'p', '4', 'v' );
  127.     if( p_dec->fmt_in.i_extra )
  128.     {
  129.         /* We have a vol */
  130.         p_dec->fmt_out.i_extra = p_dec->fmt_in.i_extra;
  131.         p_dec->fmt_out.p_extra = malloc( p_dec->fmt_in.i_extra );
  132.         memcpy( p_dec->fmt_out.p_extra, p_dec->fmt_in.p_extra,
  133.                 p_dec->fmt_in.i_extra );
  134.         msg_Dbg( p_dec, "opening with vol size:%d", p_dec->fmt_in.i_extra );
  135.         m4v_VOLParse( &p_dec->fmt_out,
  136.                       p_dec->fmt_out.p_extra, p_dec->fmt_out.i_extra );
  137.     }
  138.     else
  139.     {
  140.         /* No vol, we'll have to look for one later on */
  141.         p_dec->fmt_out.i_extra = 0;
  142.         p_dec->fmt_out.p_extra = 0;
  143.     }
  144.     /* Set callback */
  145.     p_dec->pf_packetize = Packetize;
  146.     return VLC_SUCCESS;
  147. }
  148. /*****************************************************************************
  149.  * Close: clean up the packetizer
  150.  *****************************************************************************/
  151. static void Close( vlc_object_t *p_this )
  152. {
  153.     decoder_t *p_dec = (decoder_t*)p_this;
  154.     if( p_dec->p_sys->p_buffer ) free( p_dec->p_sys->p_buffer );
  155.     free( p_dec->p_sys );
  156. }
  157. /****************************************************************************
  158.  * Packetize: the whole thing
  159.  ****************************************************************************/
  160. static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
  161. {
  162.     decoder_sys_t *p_sys = p_dec->p_sys;
  163.     block_t *p_chain_out = NULL;
  164.     block_t *p_block;
  165.     uint8_t *p_vol = NULL;
  166.     uint8_t *p_start;
  167.     if( !pp_block || !*pp_block ) return NULL;
  168.     p_block = *pp_block;
  169.     /* Append data */
  170.     if( p_sys->i_buffer + p_block->i_buffer > p_sys->i_buffer_size )
  171.     {
  172.         p_sys->i_buffer_size += p_block->i_buffer + 1024;
  173.         p_sys->p_buffer = realloc( p_sys->p_buffer, p_sys->i_buffer_size );
  174.     }
  175.     memcpy( &p_sys->p_buffer[p_sys->i_buffer], p_block->p_buffer,
  176.             p_block->i_buffer );
  177.     p_sys->i_buffer += p_block->i_buffer;
  178.     if( p_sys->i_buffer > 10*1000000 )
  179.     {
  180.         msg_Err( p_dec, "mmh reseting context" );
  181.         p_sys->i_buffer = 0;
  182.     }
  183.     /* Search vop */
  184.     p_start = &p_sys->p_buffer[p_sys->i_buffer - p_block->i_buffer - 4];
  185.     if( p_start < p_sys->p_buffer )
  186.     {
  187.         p_start = p_sys->p_buffer;
  188.     }
  189.     for( ;; )
  190.     {
  191.         if( m4v_FindStartCode( &p_start, &p_sys->p_buffer[p_sys->i_buffer] ) )
  192.         {
  193.             block_Release( p_block );
  194.             *pp_block = NULL;
  195.             return p_chain_out;
  196.         }
  197.         /* fprintf( stderr, "start code=0x1%2.2xn", p_start[3] ); */
  198.         if( p_vol )
  199.         {
  200.             /* Copy the complete VOL */
  201.             p_dec->fmt_out.i_extra = p_start - p_vol;
  202.             p_dec->fmt_out.p_extra = malloc( p_dec->fmt_out.i_extra );
  203.             memcpy( p_dec->fmt_out.p_extra, p_vol, p_dec->fmt_out.i_extra );
  204.             m4v_VOLParse( &p_dec->fmt_out,
  205.                           p_dec->fmt_out.p_extra, p_dec->fmt_out.i_extra );
  206.             p_vol = NULL;
  207.         }
  208.         if( p_sys->b_vop )
  209.         {
  210.             /* Output the complete VOP we have */
  211.             int     i_out = p_start - p_sys->p_buffer;
  212.             block_t *p_out = block_New( p_dec, i_out );
  213.             /* extract data */
  214.             memcpy( p_out->p_buffer, p_sys->p_buffer, i_out );
  215.             if( i_out < p_sys->i_buffer )
  216.             {
  217.                 memmove( p_sys->p_buffer, &p_sys->p_buffer[i_out],
  218.                          p_sys->i_buffer - i_out );
  219.             }
  220.             p_sys->i_buffer -= i_out;
  221.             p_start -= i_out;
  222.             p_out->i_flags = p_sys->i_flags;
  223.             /* FIXME do proper dts/pts */
  224.             p_out->i_pts = p_sys->i_pts;
  225.             p_out->i_dts = p_sys->i_dts;
  226.             /* FIXME doesn't work when there is multiple VOP in one block */
  227.             if( p_block->i_dts > p_sys->i_dts )
  228.             {
  229.                 p_out->i_length = p_block->i_dts - p_sys->i_dts;
  230.             }
  231.             if( p_dec->fmt_out.i_extra > 0 )
  232.             {
  233.                 block_ChainAppend( &p_chain_out, p_out );
  234.             }
  235.             else
  236.             {
  237.                 msg_Warn( p_dec, "waiting for VOL" );
  238.                 block_Release( p_out );
  239.             }
  240. #if 0
  241.             fprintf( stderr, "pts=%lld dts=%lld length=%lldmsn",
  242.                      p_out->i_pts, p_out->i_dts,
  243.                      p_out->i_length / 1000 );
  244. #endif
  245.             p_sys->b_vop = VLC_FALSE;
  246.         }
  247.         if( p_start[3] >= 0x20 && p_start[3] <= 0x2f )
  248.         {
  249.             /* Start of the VOL */
  250.             p_vol = p_start;
  251.         }
  252.         else if( p_start[3] == 0xb6 )
  253.         {
  254.             p_sys->b_vop = VLC_TRUE;
  255.             switch( p_start[4] >> 6 )
  256.             {
  257.                 case 0:
  258.                     p_sys->i_flags = BLOCK_FLAG_TYPE_I;
  259.                     break;
  260.                 case 1:
  261.                     p_sys->i_flags = BLOCK_FLAG_TYPE_P;
  262.                     break;
  263.                 case 2:
  264.                     p_sys->i_flags = BLOCK_FLAG_TYPE_B;
  265.                     p_sys->b_frame = VLC_TRUE;
  266.                     break;
  267.                 case 3: /* gni ? */
  268.                     p_sys->i_flags = BLOCK_FLAG_TYPE_PB;
  269.                     break;
  270.             }
  271.             /* The pts information is not available in all the containers.
  272.              * FIXME: calculate the pts correctly */
  273.             if( p_block->i_pts > 0 )
  274.             {
  275.                 p_sys->i_pts = p_block->i_pts;
  276.             }
  277.             else if( (p_sys->i_flags&BLOCK_FLAG_TYPE_B) || !p_sys->b_frame )
  278.             {
  279.                 p_sys->i_pts = p_block->i_dts;
  280.             }
  281.             else
  282.             {
  283.                 p_sys->i_pts = 0;
  284.             }
  285.             if( p_block->i_dts > 0 )
  286.             {
  287.                 p_sys->i_dts = p_block->i_dts;
  288.             }
  289.             else if( p_sys->i_dts > 0 )
  290.             {
  291.                 /* XXX KLUDGE immonde, else transcode won't work */
  292.                 p_sys->i_dts += 1000;
  293.             }
  294.         }
  295.         p_start += 4; /* Next */
  296.     }
  297. }
  298. /****************************************************************************
  299.  * m4v_FindStartCode
  300.  ****************************************************************************/
  301. static int m4v_FindStartCode( uint8_t **pp_start, uint8_t *p_end )
  302. {
  303.     uint8_t *p = *pp_start;
  304.     /* We wait for 4+1 bytes */
  305.     for( p = *pp_start; p < p_end - 5; p++ )
  306.     {
  307.         if( p[0] == 0 && p[1] == 0 && p[2] == 1 )
  308.         {
  309.             *pp_start = p;
  310.             return VLC_SUCCESS;
  311.         }
  312.     }
  313.     *pp_start = p_end;
  314.     return VLC_EGENERIC;
  315. }
  316. /* look at ffmpeg av_log2 ;) */
  317. static int vlc_log2( unsigned int v )
  318. {
  319.     int n = 0;
  320.     static const int vlc_log2_table[16] =
  321.     {
  322.         0,0,1,1,2,2,2,2, 3,3,3,3,3,3,3,3
  323.     };
  324.     if( v&0xffff0000 )
  325.     {
  326.         v >>= 16;
  327.         n += 16;
  328.     }
  329.     if( v&0xff00 )
  330.     {
  331.         v >>= 8;
  332.         n += 8;
  333.     }
  334.     if( v&0xf0 )
  335.     {
  336.         v >>= 4;
  337.         n += 4;
  338.     }
  339.     n += vlc_log2_table[v];
  340.     return n;
  341. }
  342. /* m4v_VOLParse:
  343.  *  TODO:
  344.  *      - support aspect ratio
  345.  */
  346. static int m4v_VOLParse( es_format_t *fmt, uint8_t *p_vol, int i_vol )
  347. {
  348.     bs_t s;
  349.     int i_vo_type;
  350.     int i_vo_ver_id;
  351.     int i_ar;
  352.     int i_shape;
  353.     int i_time_increment_resolution;
  354.     for( ;; )
  355.     {
  356.         if( p_vol[0] == 0x00 && p_vol[1] == 0x00 &&
  357.             p_vol[2] == 0x01 &&
  358.             p_vol[3] >= 0x20 && p_vol[3] <= 0x2f )
  359.         {
  360.             break;
  361.         }
  362.         p_vol++;
  363.         i_vol--;
  364.         if( i_vol <= 4 )
  365.         {
  366.             return VLC_EGENERIC;
  367.         }
  368.     }
  369.     /* parse the vol */
  370.     bs_init( &s, &p_vol[4], i_vol - 4 );
  371.     bs_skip( &s, 1 );   /* random access */
  372.     i_vo_type = bs_read( &s, 8 );
  373.     if( bs_read1( &s ) )
  374.     {
  375.         i_vo_ver_id = bs_read( &s, 4 );
  376.         bs_skip( &s, 3 );
  377.     }
  378.     else
  379.     {
  380.         i_vo_ver_id = 1;
  381.     }
  382.     i_ar = bs_read( &s, 4 );
  383.     if( i_ar == 0xf )
  384.     {
  385.         int i_ar_width, i_ar_height;
  386.         i_ar_width = bs_read( &s, 8 );
  387.         i_ar_height= bs_read( &s, 8 );
  388.     }
  389.     if( bs_read1( &s ) )
  390.     {
  391.         int i_chroma_format;
  392.         int i_low_delay;
  393.         /* vol control parameter */
  394.         i_chroma_format = bs_read( &s, 2 );
  395.         i_low_delay = bs_read1( &s );
  396.         if( bs_read1( &s ) )
  397.         {
  398.             bs_skip( &s, 16 );
  399.             bs_skip( &s, 16 );
  400.             bs_skip( &s, 16 );
  401.             bs_skip( &s, 3 );
  402.             bs_skip( &s, 11 );
  403.             bs_skip( &s, 1 );
  404.             bs_skip( &s, 16 );
  405.         }
  406.     }
  407.     /* shape 0->RECT, 1->BIN, 2->BIN_ONLY, 3->GRAY */
  408.     i_shape = bs_read( &s, 2 );
  409.     if( i_shape == 3 && i_vo_ver_id != 1 )
  410.     {
  411.         bs_skip( &s, 4 );
  412.     }
  413.     if( !bs_read1( &s ) )
  414.     {
  415.         /* marker */
  416.         return VLC_EGENERIC;
  417.     }
  418.     i_time_increment_resolution = bs_read( &s, 16 );
  419.     if( !bs_read1( &s ) )
  420.     {
  421.         /* marker */
  422.         return VLC_EGENERIC;
  423.     }
  424.     if( bs_read1( &s ) )
  425.     {
  426.         int i_time_increment_bits = vlc_log2( i_time_increment_resolution - 1 ) + 1;
  427.         if( i_time_increment_bits < 1 )
  428.         {
  429.             i_time_increment_bits = 1;
  430.         }
  431.         bs_skip( &s, i_time_increment_bits );
  432.     }
  433.     if( i_shape == 0 )
  434.     {
  435.         bs_skip( &s, 1 );
  436.         fmt->video.i_width = bs_read( &s, 13 );
  437.         bs_skip( &s, 1 );
  438.         fmt->video.i_height= bs_read( &s, 13 );
  439.         bs_skip( &s, 1 );
  440.     }
  441.     return VLC_SUCCESS;
  442. }