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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * h264.c : H264 Video demuxer
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2004 VideoLAN
  5.  * $Id: h264.c 7754 2004-05-23 14:43:14Z fenrir $
  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.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>                                      /* malloc(), free() */
  27. #include <vlc/vlc.h>
  28. #include <vlc/input.h>
  29. #include "vlc_codec.h"
  30. /*****************************************************************************
  31.  * Module descriptor
  32.  *****************************************************************************/
  33. static int  Open ( vlc_object_t * );
  34. static void Close( vlc_object_t * );
  35. vlc_module_begin();
  36.     set_description( _("H264 video demuxer" ) );
  37.     set_capability( "demux2", 0 );
  38.     add_float( "h264-fps", 25.0, NULL, "fps", "fps", VLC_TRUE );
  39.     set_callbacks( Open, Close );
  40.     add_shortcut( "h264" );
  41. vlc_module_end();
  42. /*****************************************************************************
  43.  * Local prototypes
  44.  *****************************************************************************/
  45. struct demux_sys_t
  46. {
  47.     mtime_t     i_dts;
  48.     es_out_id_t *p_es;
  49.     float       f_fps;
  50.     decoder_t *p_packetizer;
  51. };
  52. static int Demux( demux_t * );
  53. static int Control( demux_t *, int, va_list );
  54. #define H264_PACKET_SIZE 2048
  55. /*****************************************************************************
  56.  * Open: initializes demux structures
  57.  *****************************************************************************/
  58. static int Open( vlc_object_t * p_this )
  59. {
  60.     demux_t     *p_demux = (demux_t*)p_this;
  61.     demux_sys_t *p_sys;
  62.     vlc_bool_t   b_forced = VLC_FALSE;
  63.     uint8_t     *p_peek;
  64.     vlc_value_t val;
  65.     if( stream_Peek( p_demux->s, &p_peek, 5 ) < 5 )
  66.     {
  67.         msg_Err( p_demux, "cannot peek" );
  68.         return VLC_EGENERIC;
  69.     }
  70.     if( !strncmp( p_demux->psz_demux, "h264", 4 ) )
  71.     {
  72.         b_forced = VLC_TRUE;
  73.     }
  74.     if( p_peek[0] != 0x00 || p_peek[1] != 0x00 ||
  75.         p_peek[2] != 0x00 || p_peek[3] != 0x01 ||
  76.         (p_peek[4]&0x1F) != 7 ) /* SPS */
  77.     {
  78.         if( !b_forced )
  79.         {
  80.             msg_Warn( p_demux, "h264 module discarded (no startcode)" );
  81.             return VLC_EGENERIC;
  82.         }
  83.         msg_Err( p_demux, "this doesn't look like a H264 ES stream, continuing" );
  84.     }
  85.     p_demux->pf_demux  = Demux;
  86.     p_demux->pf_control= Control;
  87.     p_demux->p_sys     = p_sys = malloc( sizeof( demux_sys_t ) );
  88.     p_sys->p_es        = NULL;
  89.     p_sys->i_dts       = 1;
  90.     var_Create( p_demux, "h264-fps", VLC_VAR_FLOAT|VLC_VAR_DOINHERIT );
  91.     var_Get( p_demux, "h264-fps", &val );
  92.     p_sys->f_fps = val.f_float;
  93.     if( val.f_float < 0.001 )
  94.     {
  95.         p_sys->f_fps = 0.001;
  96.     }
  97.     msg_Dbg( p_demux, "using %.2f fps", p_sys->f_fps );
  98.     /*
  99.      * Load the mpegvideo packetizer
  100.      */
  101.     p_sys->p_packetizer = vlc_object_create( p_demux, VLC_OBJECT_PACKETIZER );
  102.     p_sys->p_packetizer->pf_decode_audio = NULL;
  103.     p_sys->p_packetizer->pf_decode_video = NULL;
  104.     p_sys->p_packetizer->pf_decode_sub = NULL;
  105.     p_sys->p_packetizer->pf_packetize = NULL;
  106.     es_format_Init( &p_sys->p_packetizer->fmt_in, VIDEO_ES,
  107.                     VLC_FOURCC( 'h', '2', '6', '4' ) );
  108.     es_format_Init( &p_sys->p_packetizer->fmt_out, UNKNOWN_ES, 0 );
  109.     p_sys->p_packetizer->p_module =
  110.         module_Need( p_sys->p_packetizer, "packetizer", NULL, 0 );
  111.     if( p_sys->p_packetizer->p_module == NULL)
  112.     {
  113.         vlc_object_destroy( p_sys->p_packetizer );
  114.         msg_Err( p_demux, "cannot find mp4v packetizer" );
  115.         free( p_sys );
  116.         return VLC_EGENERIC;
  117.     }
  118.     return VLC_SUCCESS;
  119. }
  120. /*****************************************************************************
  121.  * Close: frees unused data
  122.  *****************************************************************************/
  123. static void Close( vlc_object_t * p_this )
  124. {
  125.     demux_t     *p_demux = (demux_t*)p_this;
  126.     demux_sys_t *p_sys = p_demux->p_sys;
  127.     module_Unneed( p_sys->p_packetizer, p_sys->p_packetizer->p_module );
  128.     vlc_object_destroy( p_sys->p_packetizer );
  129.     free( p_sys );
  130. }
  131. /*****************************************************************************
  132.  * Demux: reads and demuxes data packets
  133.  *****************************************************************************
  134.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  135.  *****************************************************************************/
  136. static int Demux( demux_t *p_demux)
  137. {
  138.     demux_sys_t *p_sys = p_demux->p_sys;
  139.     block_t *p_block_in, *p_block_out;
  140.     if( ( p_block_in = stream_Block( p_demux->s, H264_PACKET_SIZE ) ) == NULL )
  141.     {
  142.         return 0;
  143.     }
  144.     /* m4v demuxer doesn't set pts/dts at all */
  145.     p_block_in->i_dts = 1;
  146.     p_block_in->i_pts = 1;
  147.     while( (p_block_out = p_sys->p_packetizer->pf_packetize( p_sys->p_packetizer, &p_block_in )) )
  148.     {
  149.         while( p_block_out )
  150.         {
  151.             block_t *p_next = p_block_out->p_next;
  152.             p_block_out->p_next = NULL;
  153.             if( p_sys->p_es == NULL )
  154.             {
  155.                 p_sys->p_packetizer->fmt_out.b_packetized = VLC_TRUE;
  156.                 p_sys->p_es = es_out_Add( p_demux->out, &p_sys->p_packetizer->fmt_out);
  157.             }
  158.             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_dts );
  159.             p_block_out->i_dts = p_sys->i_dts;
  160.             p_block_out->i_pts = p_sys->i_dts;
  161.             es_out_Send( p_demux->out, p_sys->p_es, p_block_out );
  162.             p_block_out = p_next;
  163.             p_sys->i_dts += (int64_t)((double)1000000.0 / p_sys->f_fps);
  164.         }
  165.     }
  166.     return 1;
  167. }
  168. /*****************************************************************************
  169.  * Control:
  170.  *****************************************************************************/
  171. static int Control( demux_t *p_demux, int i_query, va_list args )
  172. {
  173.     /* demux_sys_t *p_sys  = p_demux->p_sys; */
  174.     /* FIXME calculate the bitrate */
  175.     if( i_query == DEMUX_SET_TIME )
  176.         return VLC_EGENERIC;
  177.     else
  178.         return demux2_vaControlHelper( p_demux->s,
  179.                                        0, -1,
  180.                                        0, 1, i_query, args );
  181. }