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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * m4v.c : MPEG-4 Video demuxer
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2004 VideoLAN
  5.  * $Id: m4v.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( _("MPEG-4 video demuxer" ) );
  37.     set_capability( "demux2", 0 );
  38.     set_callbacks( Open, Close );
  39.     add_shortcut( "m4v" );
  40.     add_shortcut( "mp4v" );
  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.     decoder_t *p_packetizer;
  50. };
  51. static int Demux( demux_t * );
  52. static int Control( demux_t *, int, va_list );
  53. #define M4V_PACKET_SIZE 4096
  54. /*****************************************************************************
  55.  * Open: initializes demux structures
  56.  *****************************************************************************/
  57. static int Open( vlc_object_t * p_this )
  58. {
  59.     demux_t     *p_demux = (demux_t*)p_this;
  60.     demux_sys_t *p_sys;
  61.     vlc_bool_t   b_forced = VLC_FALSE;
  62.     uint8_t     *p_peek;
  63.     es_format_t  fmt;
  64.     if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 )
  65.     {
  66.         msg_Err( p_demux, "cannot peek" );
  67.         return VLC_EGENERIC;
  68.     }
  69.     if( !strncmp( p_demux->psz_demux, "mp4v", 4 ) ||
  70.         !strncmp( p_demux->psz_demux, "m4v", 4 ) )
  71.     {
  72.         b_forced = VLC_TRUE;
  73.     }
  74.     if( p_peek[0] != 0x00 || p_peek[1] != 0x00 || p_peek[2] != 0x01 || p_peek[3] > 0x2f )
  75.     {
  76.         if( !b_forced )
  77.         {
  78.             msg_Warn( p_demux, "m4v module discarded (no startcode)" );
  79.             return VLC_EGENERIC;
  80.         }
  81.         msg_Err( p_demux, "this doesn't look like an MPEG-4 ES stream, continuing" );
  82.     }
  83.     p_demux->pf_demux  = Demux;
  84.     p_demux->pf_control= Control;
  85.     p_demux->p_sys     = p_sys = malloc( sizeof( demux_sys_t ) );
  86.     p_sys->p_es        = NULL;
  87.     p_sys->i_dts       = 1;
  88.     /*
  89.      * Load the mpegvideo packetizer
  90.      */
  91.     p_sys->p_packetizer = vlc_object_create( p_demux, VLC_OBJECT_PACKETIZER );
  92.     p_sys->p_packetizer->pf_decode_audio = NULL;
  93.     p_sys->p_packetizer->pf_decode_video = NULL;
  94.     p_sys->p_packetizer->pf_decode_sub = NULL;
  95.     p_sys->p_packetizer->pf_packetize = NULL;
  96.     es_format_Init( &p_sys->p_packetizer->fmt_in, VIDEO_ES,
  97.                     VLC_FOURCC( 'm', 'p', '4', 'v' ) );
  98.     es_format_Init( &p_sys->p_packetizer->fmt_out, UNKNOWN_ES, 0 );
  99.     p_sys->p_packetizer->p_module =
  100.         module_Need( p_sys->p_packetizer, "packetizer", NULL, 0 );
  101.     if( p_sys->p_packetizer->p_module == NULL)
  102.     {
  103.         vlc_object_destroy( p_sys->p_packetizer );
  104.         msg_Err( p_demux, "cannot find mp4v packetizer" );
  105.         free( p_sys );
  106.         return VLC_EGENERIC;
  107.     }
  108.     /*
  109.      * create the output
  110.      */
  111.     es_format_Init( &fmt, VIDEO_ES, VLC_FOURCC( 'm', 'p', '4', 'v' ) );
  112.     p_sys->p_es = es_out_Add( p_demux->out, &fmt );
  113.     return VLC_SUCCESS;
  114. }
  115. /*****************************************************************************
  116.  * Close: frees unused data
  117.  *****************************************************************************/
  118. static void Close( vlc_object_t * p_this )
  119. {
  120.     demux_t     *p_demux = (demux_t*)p_this;
  121.     demux_sys_t *p_sys = p_demux->p_sys;
  122.     module_Unneed( p_sys->p_packetizer, p_sys->p_packetizer->p_module );
  123.     vlc_object_destroy( p_sys->p_packetizer );
  124.     free( p_sys );
  125. }
  126. /*****************************************************************************
  127.  * Demux: reads and demuxes data packets
  128.  *****************************************************************************
  129.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  130.  *****************************************************************************/
  131. static int Demux( demux_t *p_demux)
  132. {
  133.     demux_sys_t *p_sys = p_demux->p_sys;
  134.     block_t *p_block_in, *p_block_out;
  135.     if( ( p_block_in = stream_Block( p_demux->s, M4V_PACKET_SIZE ) ) == NULL )
  136.     {
  137.         return 0;
  138.     }
  139.     /* m4v demuxer doesn't set pts/dts at all */
  140.     p_block_in->i_dts = p_sys->i_dts;
  141.     p_block_in->i_pts = 0;
  142.     while( (p_block_out = p_sys->p_packetizer->pf_packetize( p_sys->p_packetizer, &p_block_in )) )
  143.     {
  144.         while( p_block_out )
  145.         {
  146.             block_t *p_next = p_block_out->p_next;
  147.             if( p_sys->p_es == NULL )
  148.             {
  149.                 p_sys->p_packetizer->fmt_out.b_packetized = VLC_TRUE;
  150.                 p_sys->p_es = es_out_Add( p_demux->out, &p_sys->p_packetizer->fmt_out);
  151.             }
  152.             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_dts );
  153.             p_block_out->p_next = NULL;
  154.             if( p_block_out->i_pts == p_block_out->i_dts )
  155.             {
  156.                 p_block_out->i_pts = p_sys->i_dts;
  157.             }
  158.             else
  159.             {
  160.                 p_block_out->i_pts = 0;
  161.             }
  162.             p_block_out->i_dts = p_sys->i_dts;
  163.             es_out_Send( p_demux->out, p_sys->p_es, p_block_out );
  164.             p_block_out = p_next;
  165.             /* FIXME FIXME FIXME FIXME */
  166.             p_sys->i_dts += (mtime_t)1000000 / 25;
  167.             /* FIXME FIXME FIXME FIXME */
  168.         }
  169.     }
  170.     return 1;
  171. }
  172. /*****************************************************************************
  173.  * Control:
  174.  *****************************************************************************/
  175. static int Control( demux_t *p_demux, int i_query, va_list args )
  176. {
  177.     /* demux_sys_t *p_sys  = p_demux->p_sys; */
  178.     /* FIXME calculate the bitrate */
  179.     if( i_query == DEMUX_SET_TIME )
  180.         return VLC_EGENERIC;
  181.     else
  182.         return demux2_vaControlHelper( p_demux->s,
  183.                                        0, -1,
  184.                                        0, 1, i_query, args );
  185. }