pes.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:16k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * pes.c: PES packetizer used by the MPEG multiplexers
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 the VideoLAN team
  5.  * $Id: 06afc9a08b351d9611ba255e28baba5315874831 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Eric Petit <titer@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_sout.h>
  32. #include <vlc_block.h>
  33. #include <assert.h>
  34. #include <vlc_codecs.h>
  35. #include "pes.h"
  36. #include "bits.h"
  37. /** PESHeader, write a pes header
  38.  * param i_es_size length of payload data. (Must be < PES_PAYLOAD_SIZE_MAX
  39.  *                  unless the conditions for unbounded PES packets are met)
  40.  * param i_stream_id stream id as follows:
  41.  *                     - 0x00   - 0xff   : normal stream_id as per Table 2-18
  42.  *                     - 0xfd00 - 0xfd7f : stream_id_extension = low 7 bits
  43.  *                                         (stream_id = PES_EXTENDED_STREAM_ID)
  44.  *                     - 0xbd00 - 0xbdff : private_id = low 8 bits
  45.  *                                         (stream_id = PES_PRIVATE_STREAM)
  46.  * param i_header_size length of padding data to insert into PES packet
  47.  *                      header in bytes.
  48.  */
  49. static inline int PESHeader( uint8_t *p_hdr, mtime_t i_pts, mtime_t i_dts,
  50.                              int i_es_size, es_format_t *p_fmt,
  51.                              int i_stream_id, bool b_mpeg2,
  52.                              bool b_data_alignment, int i_header_size )
  53. {
  54.     bits_buffer_t bits;
  55.     int     i_extra = 0;
  56.     int i_private_id = -1;
  57.     int i_stream_id_extension = 0;
  58.     /* HACK for private stream 1 in ps */
  59.     if( ( i_stream_id >> 8 ) == PES_PRIVATE_STREAM_1 )
  60.     {
  61.         i_private_id = i_stream_id & 0xff;
  62.         i_stream_id = PES_PRIVATE_STREAM_1;
  63.         /* For PES_PRIVATE_STREAM_1 there is an extra header after the
  64.            pes header */
  65.         /* i_private_id != -1 because TS use 0xbd without private_id */
  66.         i_extra = 1;
  67.         if( ( i_private_id & 0xf0 ) == 0x80 )
  68.             i_extra += 3;
  69.     }
  70.     else if( ( i_stream_id >> 8 ) == PES_EXTENDED_STREAM_ID )
  71.     {
  72.         /* Enable support for extended_stream_id as defined in
  73.          * ISO/IEC 13818-1:2000/Amd.2:2003 */
  74.         /* NB, i_extended_stream_id is limited to 7 bits */
  75.         i_stream_id_extension = i_stream_id & 0x7f;
  76.         i_stream_id = PES_EXTENDED_STREAM_ID;
  77.     }
  78.     bits_initwrite( &bits, 50, p_hdr );
  79.     /* add start code */
  80.     bits_write( &bits, 24, 0x01 );
  81.     bits_write( &bits, 8, i_stream_id );
  82.     switch( i_stream_id )
  83.     {
  84.         case PES_PROGRAM_STREAM_MAP:
  85.         case PES_PADDING:
  86.         case PES_PRIVATE_STREAM_2:
  87.         case PES_ECM:
  88.         case PES_EMM:
  89.         case PES_PROGRAM_STREAM_DIRECTORY:
  90.         case PES_DSMCC_STREAM:
  91.         case PES_ITU_T_H222_1_TYPE_E_STREAM:
  92.             /* add pes data size  */
  93.             bits_write( &bits, 16, i_es_size );
  94.             bits_align( &bits );
  95.             return( bits.i_data );
  96.         default:
  97.             /* arg, a little more difficult */
  98.             if( b_mpeg2 )
  99.             {
  100.                 int i_pts_dts;
  101.                 bool b_pes_extension_flag = false;
  102.                 if( i_pts > 0 && i_dts > 0 &&
  103.                     ( i_pts != i_dts || ( p_fmt->i_cat == VIDEO_ES &&
  104.                       p_fmt->i_codec != VLC_FOURCC('m','p','g','v') ) ) )
  105.                 {
  106.                     i_pts_dts = 0x03;
  107.                     if ( !i_header_size ) i_header_size = 0xa;
  108.                 }
  109.                 else if( i_pts > 0 )
  110.                 {
  111.                     i_pts_dts = 0x02;
  112.                     if ( !i_header_size ) i_header_size = 0x5;
  113.                 }
  114.                 else
  115.                 {
  116.                     i_pts_dts = 0x00;
  117.                     if ( !i_header_size ) i_header_size = 0x0;
  118.                 }
  119.                 if( i_stream_id == PES_EXTENDED_STREAM_ID )
  120.                 {
  121.                     b_pes_extension_flag = true;
  122.                     i_header_size += 1 + 1;
  123.                 }
  124.                 if( b_pes_extension_flag )
  125.                 {
  126.                     i_header_size += 1;
  127.                 }
  128.                 /* Unbounded streams are only allowed in TS (not PS) and only
  129.                  * for some ES, eg. MPEG* Video ES or Dirac ES. */
  130.                 if( i_es_size > PES_PAYLOAD_SIZE_MAX )
  131.                     bits_write( &bits, 16, 0 ); // size unbounded
  132.                 else
  133.                     bits_write( &bits, 16, i_es_size + i_extra + 3
  134.                                  + i_header_size ); // size
  135.                 bits_write( &bits, 2, 0x02 ); // mpeg2 id
  136.                 bits_write( &bits, 2, 0x00 ); // pes scrambling control
  137.                 bits_write( &bits, 1, 0x00 ); // pes priority
  138.                 bits_write( &bits, 1, b_data_alignment ); // data alignement indicator
  139.                 bits_write( &bits, 1, 0x00 ); // copyright
  140.                 bits_write( &bits, 1, 0x00 ); // original or copy
  141.                 bits_write( &bits, 2, i_pts_dts ); // pts_dts flags
  142.                 bits_write( &bits, 1, 0x00 ); // escr flags
  143.                 bits_write( &bits, 1, 0x00 ); // es rate flag
  144.                 bits_write( &bits, 1, 0x00 ); // dsm trick mode flag
  145.                 bits_write( &bits, 1, 0x00 ); // additional copy info flag
  146.                 bits_write( &bits, 1, 0x00 ); // pes crc flag
  147.                 bits_write( &bits, 1, b_pes_extension_flag );
  148.                 bits_write( &bits, 8, i_header_size );
  149.                 /* write pts */
  150.                 if( i_pts_dts & 0x02 )
  151.                 {
  152.                     bits_write( &bits, 4, i_pts_dts ); // '0010' or '0011'
  153.                     bits_write( &bits, 3, i_pts >> 30 );
  154.                     bits_write( &bits, 1, 0x01 ); // marker
  155.                     bits_write( &bits, 15, i_pts >> 15 );
  156.                     bits_write( &bits, 1, 0x01 ); // marker
  157.                     bits_write( &bits, 15, i_pts );
  158.                     bits_write( &bits, 1, 0x01 ); // marker
  159.                     i_header_size -= 0x5;
  160.                 }
  161.                 /* write i_dts */
  162.                 if( i_pts_dts & 0x01 )
  163.                 {
  164.                     bits_write( &bits, 4, 0x01 ); // '0001'
  165.                     bits_write( &bits, 3, i_dts >> 30 );
  166.                     bits_write( &bits, 1, 0x01 ); // marker
  167.                     bits_write( &bits, 15, i_dts >> 15 );
  168.                     bits_write( &bits, 1, 0x01 ); // marker
  169.                     bits_write( &bits, 15, i_dts );
  170.                     bits_write( &bits, 1, 0x01 ); // marker
  171.                     i_header_size -= 0x5;
  172.                 }
  173.                 if( b_pes_extension_flag )
  174.                 {
  175.                     bits_write( &bits, 1, 0x00 ); // PES_private_data_flag
  176.                     bits_write( &bits, 1, 0x00 ); // pack_header_field_flag
  177.                     bits_write( &bits, 1, 0x00 ); // program_packet_sequence_counter_flag
  178.                     bits_write( &bits, 1, 0x00 ); // P-STD_buffer_flag
  179.                     bits_write( &bits, 3, 0x07 ); // reserved
  180.                     bits_write( &bits, 1, 0x01 ); // PES_extension_flag_2
  181.                     /* skipping unsupported parts: */
  182.                     /*   PES_private_data */
  183.                     /*   pack_header */
  184.                     /*   program_packet_sequence_counter */
  185.                     /*   P-STD_buffer_flag */
  186.                     if( i_stream_id == PES_EXTENDED_STREAM_ID )
  187.                     {
  188.                         /* PES_extension_2 */
  189.                         bits_write( &bits, 1, 0x01 ); // marker
  190.                         bits_write( &bits, 7, 0x01 ); // PES_extension_field_length
  191.                         bits_write( &bits, 1, 0x01 ); // stream_id_extension_flag
  192.                         bits_write( &bits, 7, i_stream_id_extension );
  193.                         i_header_size -= 0x2;
  194.                     }
  195.                     i_header_size -= 0x1;
  196.                 }
  197.                 while ( i_header_size )
  198.                 {
  199.                     bits_write( &bits, 8, 0xff );
  200.                     i_header_size--;
  201.                 }
  202.             }
  203.             else /* MPEG1 */
  204.             {
  205.                 int i_pts_dts;
  206.                 if( i_pts > 0 && i_dts > 0 &&
  207.                     ( i_pts != i_dts || p_fmt->i_cat == VIDEO_ES ) )
  208.                 {
  209.                     bits_write( &bits, 16, i_es_size + i_extra + 10 /* + stuffing */ );
  210.                     i_pts_dts = 0x03;
  211.                 }
  212.                 else if( i_pts > 0 )
  213.                 {
  214.                     bits_write( &bits, 16, i_es_size + i_extra + 5 /* + stuffing */ );
  215.                     i_pts_dts = 0x02;
  216.                 }
  217.                 else
  218.                 {
  219.                     bits_write( &bits, 16, i_es_size + i_extra + 1 /* + stuffing */);
  220.                     i_pts_dts = 0x00;
  221.                 }
  222.                 /* FIXME: Now should be stuffing */
  223.                 /* No STD_buffer_scale and STD_buffer_size */
  224.                 /* write pts */
  225.                 if( i_pts_dts & 0x02 )
  226.                 {
  227.                     bits_write( &bits, 4, i_pts_dts ); // '0010' or '0011'
  228.                     bits_write( &bits, 3, i_pts >> 30 );
  229.                     bits_write( &bits, 1, 0x01 ); // marker
  230.                     bits_write( &bits, 15, i_pts >> 15 );
  231.                     bits_write( &bits, 1, 0x01 ); // marker
  232.                     bits_write( &bits, 15, i_pts );
  233.                     bits_write( &bits, 1, 0x01 ); // marker
  234.                 }
  235.                 /* write i_dts */
  236.                 if( i_pts_dts & 0x01 )
  237.                 {
  238.                     bits_write( &bits, 4, 0x01 ); // '0001'
  239.                     bits_write( &bits, 3, i_dts >> 30 );
  240.                     bits_write( &bits, 1, 0x01 ); // marker
  241.                     bits_write( &bits, 15, i_dts >> 15 );
  242.                     bits_write( &bits, 1, 0x01 ); // marker
  243.                     bits_write( &bits, 15, i_dts );
  244.                     bits_write( &bits, 1, 0x01 ); // marker
  245.                 }
  246.                 if( !i_pts_dts )
  247.                 {
  248.                     bits_write( &bits, 8, 0x0F );
  249.                 }
  250.             }
  251.             /* now should be stuffing */
  252.             /* and then pes data */
  253.             bits_align( &bits );
  254.             if( i_stream_id == PES_PRIVATE_STREAM_1 && i_private_id != -1 )
  255.             {
  256.                 bits_write( &bits, 8, i_private_id );
  257.                 if( ( i_private_id&0xf0 ) == 0x80 )
  258.                 {
  259.                     bits_write( &bits, 24, 0 ); // ac3
  260.                 }
  261.             }
  262.             bits_align( &bits );
  263.             return( bits.i_data );
  264.     }
  265. }
  266. /** EStoPES, encapsulate an elementary stream block into PES packet(s)
  267.  * each with a maximal payload size of @i_max_pes_size@.
  268.  *
  269.  * In some circumstances, unbounded PES packets are allowed:
  270.  *  - Transport streams only (NOT programme streams)
  271.  *  - Only some types of elementary streams (eg MPEG2 video)
  272.  * It is the responsibility of the caller to enforce these constraints.
  273.  *
  274.  * EStoPES will only produce an unbounded PES packet if:
  275.  *  - ES is VIDEO_ES
  276.  *  - i_max_pes_size > PES_PAYLOAD_SIZE_MAX
  277.  *  - length of p_es > PES_PAYLOAD_SIZE_MAX
  278.  * If the last condition is not met, a single PES packet is produced
  279.  * which is not unbounded in length.
  280.  *
  281.  * param i_stream_id stream id as follows:
  282.  *                     - 0x00   - 0xff   : normal stream_id as per Table 2-18
  283.  *                     - 0xfd00 - 0xfd7f : stream_id_extension = low 7 bits
  284.  *                                         (stream_id = PES_EXTENDED_STREAM_ID)
  285.  *                     - 0xbd00 - 0xbdff : private_id = low 8 bits
  286.  *                                         (stream_id = PES_PRIVATE_STREAM)
  287.  * param i_header_size length of padding data to insert into PES packet
  288.  *                      header in bytes.
  289.  * param i_max_pes_size maximum length of each pes packet payload.
  290.  *                       if zero, uses default maximum.
  291.  *                       To allow unbounded PES packets in transport stream
  292.  *                       VIDEO_ES, set to INT_MAX.
  293.  */
  294. int  EStoPES ( sout_instance_t *p_sout, block_t **pp_pes, block_t *p_es,
  295.                    es_format_t *p_fmt, int i_stream_id,
  296.                    int b_mpeg2, int b_data_alignment, int i_header_size,
  297.                    int i_max_pes_size )
  298. {
  299.     block_t *p_pes;
  300.     mtime_t i_pts, i_dts, i_length;
  301.     uint8_t *p_data;
  302.     int     i_size;
  303.     uint8_t header[50];     // PES header + extra < 50 (more like 17)
  304.     int     i_pes_payload;
  305.     int     i_pes_header;
  306.     int     i_pes_count = 1;
  307.     assert( i_max_pes_size >= 0 );
  308.     assert( i_header_size >= 0 );
  309.     /* NB, Only video ES may have unbounded length */
  310.     if( !i_max_pes_size ||
  311.         ( p_fmt->i_cat != VIDEO_ES && i_max_pes_size > PES_PAYLOAD_SIZE_MAX ) )
  312.     {
  313.         i_max_pes_size = PES_PAYLOAD_SIZE_MAX;
  314.     }
  315.     if( p_fmt->i_codec == VLC_FOURCC( 'm', 'p','4', 'v' ) &&
  316.         p_es->i_flags & BLOCK_FLAG_TYPE_I )
  317.     {
  318.         /* For MPEG4 video, add VOL before I-frames */
  319.         p_es = block_Realloc( p_es, p_fmt->i_extra, p_es->i_buffer );
  320.         memcpy( p_es->p_buffer, p_fmt->p_extra, p_fmt->i_extra );
  321.     }
  322.     i_pts = p_es->i_pts <= 0 ? 0 : p_es->i_pts * 9 / 100; // 90000 units clock
  323.     i_dts = p_es->i_dts <= 0 ? 0 : p_es->i_dts * 9 / 100; // 90000 units clock
  324.     i_size = p_es->i_buffer;
  325.     p_data = p_es->p_buffer;
  326.     *pp_pes = p_pes = NULL;
  327. #ifndef NDEBUG
  328.     memset( header, 0, 50 );
  329. #endif
  330.     do
  331.     {
  332.         i_pes_payload = __MIN( i_size, i_max_pes_size );
  333.         i_pes_header  = PESHeader( header, i_pts, i_dts, i_pes_payload,
  334.                                    p_fmt, i_stream_id, b_mpeg2,
  335.                                    b_data_alignment, i_header_size );
  336.         i_dts = 0; // only first PES has a dts/pts
  337.         i_pts = 0;
  338.         if( p_es )
  339.         {
  340.             p_es = block_Realloc( p_es, i_pes_header, p_es->i_buffer );
  341.             p_data = p_es->p_buffer+i_pes_header;
  342.             /* reuse p_es for first frame */
  343.             *pp_pes = p_pes = p_es;
  344.             /* don't touch i_dts, i_pts, i_length as are already set :) */
  345.             p_es = NULL;
  346.         }
  347.         else
  348.         {
  349.             p_pes->p_next = block_New( p_sout, i_pes_header + i_pes_payload );
  350.             p_pes = p_pes->p_next;
  351.             p_pes->i_dts    = 0;
  352.             p_pes->i_pts    = 0;
  353.             p_pes->i_length = 0;
  354.             if( i_pes_payload > 0 )
  355.             {
  356.                 vlc_memcpy( p_pes->p_buffer + i_pes_header, p_data,
  357.                             i_pes_payload );
  358.             }
  359.             i_pes_count++;
  360.         }
  361.         /* copy header */
  362.         memcpy( p_pes->p_buffer, header, i_pes_header );
  363.         i_size -= i_pes_payload;
  364.         p_data += i_pes_payload;
  365.         p_pes->i_buffer =  i_pes_header + i_pes_payload;
  366.     } while( i_size > 0 );
  367.     /* Now redate all pes */
  368.     i_dts    = (*pp_pes)->i_dts;
  369.     i_length = (*pp_pes)->i_length / i_pes_count;
  370.     for( p_pes = *pp_pes; p_pes != NULL; p_pes = p_pes->p_next )
  371.     {
  372.         p_pes->i_dts = i_dts;
  373.         p_pes->i_length = i_length;
  374.         i_dts += i_length;
  375.     }
  376.     return 0;
  377. }