muxers.c
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:28k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * muxers.c: h264 file i/o plugins
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2008 x264 project
  5.  *
  6.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  7.  *          Loren Merritt <lorenm@u.washington.edu>
  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., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include "common/common.h"
  24. #include "x264.h"
  25. #include "matroska.h"
  26. #include "muxers.h"
  27. //配置MS VC环境 --@lia
  28. #ifndef _MSC_VER
  29. #include "config.h"
  30. #endif
  31. #include <sys/types.h>
  32. #ifdef AVIS_INPUT
  33. #include <windows.h>
  34. #include <vfw.h>
  35. #endif
  36. #ifdef MP4_OUTPUT
  37. #include <gpac/isomedia.h>
  38. #endif
  39. static int64_t gcd( int64_t a, int64_t b )
  40. {
  41.     while( 1 )
  42.     {
  43.         int64_t c = a % b;
  44.         if( !c )
  45.             return b;
  46.         a = b;
  47.         b = c;
  48.     }
  49. }
  50. typedef struct
  51. {
  52.     FILE *fh;
  53.     int width, height;
  54.     int next_frame;
  55. } yuv_input_t;
  56. /* raw 420 yuv file operation */
  57. int open_file_yuv( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param )
  58. {
  59.     yuv_input_t *h = malloc( sizeof(yuv_input_t) );
  60.     if( !h )
  61.         return -1;
  62.     h->width = p_param->i_width;
  63.     h->height = p_param->i_height;
  64.     h->next_frame = 0;
  65.     if( !strcmp( psz_filename, "-" ) )
  66.         h->fh = stdin;
  67.     else
  68.         h->fh = fopen( psz_filename, "rb" );
  69.     if( h->fh == NULL )
  70.         return -1;
  71.     *p_handle = (hnd_t)h;
  72.     return 0;
  73. }
  74. int get_frame_total_yuv( hnd_t handle )
  75. {
  76.     yuv_input_t *h = handle;
  77.     int i_frame_total = 0;
  78.     if( !fseek( h->fh, 0, SEEK_END ) )
  79.     {
  80.         uint64_t i_size = ftell( h->fh );
  81.         fseek( h->fh, 0, SEEK_SET );
  82.         i_frame_total = (int)(i_size / ( h->width * h->height * 3 / 2 ));
  83.     }
  84.     return i_frame_total;
  85. }
  86. int read_frame_yuv( x264_picture_t *p_pic, hnd_t handle, int i_frame )
  87. {
  88.     yuv_input_t *h = handle;
  89.     if( i_frame != h->next_frame )
  90.         if( fseek( h->fh, (uint64_t)i_frame * h->width * h->height * 3 / 2, SEEK_SET ) )
  91.             return -1;
  92.     if( fread( p_pic->img.plane[0], 1, h->width * h->height, h->fh ) <= 0
  93.      || fread( p_pic->img.plane[1], 1, h->width * h->height / 4, h->fh ) <= 0
  94.      || fread( p_pic->img.plane[2], 1, h->width * h->height / 4, h->fh ) <= 0 )
  95.         return -1;
  96.     h->next_frame = i_frame+1;
  97.     return 0;
  98. }
  99. int close_file_yuv(hnd_t handle)
  100. {
  101.     yuv_input_t *h = handle;
  102.     if( !h || !h->fh )
  103.         return 0;
  104.     fclose( h->fh );
  105.     free( h );
  106.     return 0;
  107. }
  108. /* YUV4MPEG2 raw 420 yuv file operation */
  109. typedef struct
  110. {
  111.     FILE *fh;
  112.     int width, height;
  113.     int next_frame;
  114.     int seq_header_len, frame_header_len;
  115.     int frame_size;
  116. } y4m_input_t;
  117. #define Y4M_MAGIC "YUV4MPEG2"
  118. #define MAX_YUV4_HEADER 80
  119. #define Y4M_FRAME_MAGIC "FRAME"
  120. #define MAX_FRAME_HEADER 80
  121. int open_file_y4m( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param )
  122. {
  123.     int  i, n, d;
  124.     char header[MAX_YUV4_HEADER+10];
  125.     char *tokstart, *tokend, *header_end;
  126.     y4m_input_t *h = malloc( sizeof(y4m_input_t) );
  127.     if( !h )
  128.         return -1;
  129.     h->next_frame = 0;
  130.     if( !strcmp( psz_filename, "-" ) )
  131.         h->fh = stdin;
  132.     else
  133.         h->fh = fopen(psz_filename, "rb");
  134.     if( h->fh == NULL )
  135.         return -1;
  136.     h->frame_header_len = strlen(Y4M_FRAME_MAGIC)+1;
  137.     /* Read header */
  138.     for( i = 0; i < MAX_YUV4_HEADER; i++ )
  139.     {
  140.         header[i] = fgetc(h->fh);
  141.         if( header[i] == 'n' )
  142.         {
  143.             /* Add a space after last option. Makes parsing "444" vs
  144.                "444alpha" easier. */
  145.             header[i+1] = 0x20;
  146.             header[i+2] = 0;
  147.             break;
  148.         }
  149.     }
  150.     if( i == MAX_YUV4_HEADER || strncmp(header, Y4M_MAGIC, strlen(Y4M_MAGIC)) )
  151.         return -1;
  152.     /* Scan properties */
  153.     header_end = &header[i+1]; /* Include space */
  154.     h->seq_header_len = i+1;
  155.     for( tokstart = &header[strlen(Y4M_MAGIC)+1]; tokstart < header_end; tokstart++ )
  156.     {
  157.         if( *tokstart == 0x20 )
  158.             continue;
  159.         switch(*tokstart++)
  160.         {
  161.             case 'W': /* Width. Required. */
  162.                 h->width = p_param->i_width = strtol( tokstart, &tokend, 10 );
  163.                 tokstart=tokend;
  164.                 break;
  165.             case 'H': /* Height. Required. */
  166.                 h->height = p_param->i_height = strtol( tokstart, &tokend, 10 );
  167.                 tokstart=tokend;
  168.                 break;
  169.             case 'C': /* Color space */
  170.                 if( strncmp( "420", tokstart, 3 ) )
  171.                 {
  172.                     fprintf( stderr, "Colorspace unhandledn" );
  173.                     return -1;
  174.                 }
  175.                 tokstart = strchr( tokstart, 0x20 );
  176.                 break;
  177.             case 'I': /* Interlace type */
  178.                 switch( *tokstart++ )
  179.                 {
  180.                     case 'p': break;
  181.                     case '?':
  182.                     case 't':
  183.                     case 'b':
  184.                     case 'm':
  185.                     default:
  186.                         fprintf( stderr, "Warning, this sequence might be interlacedn" );
  187.                 }
  188.                 break;
  189.             case 'F': /* Frame rate - 0:0 if unknown */
  190.                 if( sscanf( tokstart, "%d:%d", &n, &d ) == 2 && n && d )
  191.                 {
  192.                     x264_reduce_fraction( &n, &d );
  193.                     p_param->i_fps_num = n;
  194.                     p_param->i_fps_den = d;
  195.                 }
  196.                 tokstart = strchr( tokstart, 0x20 );
  197.                 break;
  198.             case 'A': /* Pixel aspect - 0:0 if unknown */
  199.                 /* Don't override the aspect ratio if sar has been explicitly set on the commandline. */
  200.                 if( sscanf( tokstart, "%d:%d", &n, &d ) == 2 && n && d && !p_param->vui.i_sar_width && !p_param->vui.i_sar_height )
  201.                 {
  202.                     x264_reduce_fraction( &n, &d );
  203.                     p_param->vui.i_sar_width = n;
  204.                     p_param->vui.i_sar_height = d;
  205.                 }
  206.                 tokstart = strchr( tokstart, 0x20 );
  207.                 break;
  208.             case 'X': /* Vendor extensions */
  209.                 if( !strncmp( "YSCSS=", tokstart, 6 ) )
  210.                 {
  211.                     /* Older nonstandard pixel format representation */
  212.                     tokstart += 6;
  213.                     if( strncmp( "420JPEG",tokstart, 7 ) &&
  214.                         strncmp( "420MPEG2",tokstart, 8 ) &&
  215.                         strncmp( "420PALDV",tokstart, 8 ) )
  216.                     {
  217.                         fprintf( stderr, "Unsupported extended colorspacen" );
  218.                         return -1;
  219.                     }
  220.                 }
  221.                 tokstart = strchr(tokstart, 0x20);
  222.                 break;
  223.         }
  224.     }
  225.     fprintf( stderr, "yuv4mpeg: %ix%i@%i/%ifps, %i:%in",
  226.              h->width, h->height, p_param->i_fps_num, p_param->i_fps_den,
  227.              p_param->vui.i_sar_width, p_param->vui.i_sar_height );
  228.     *p_handle = (hnd_t)h;
  229.     return 0;
  230. }
  231. /* Most common case: frame_header = "FRAME" */
  232. int get_frame_total_y4m( hnd_t handle )
  233. {
  234.     y4m_input_t *h             = handle;
  235.     int          i_frame_total = 0;
  236.     uint64_t     init_pos      = ftell(h->fh);
  237.     if( !fseek( h->fh, 0, SEEK_END ) )
  238.     {
  239.         uint64_t i_size = ftell( h->fh );
  240.         fseek( h->fh, init_pos, SEEK_SET );
  241.         i_frame_total = (int)((i_size - h->seq_header_len) /
  242.                               (3*(h->width*h->height)/2+h->frame_header_len));
  243.     }
  244.     return i_frame_total;
  245. }
  246. int read_frame_y4m( x264_picture_t *p_pic, hnd_t handle, int i_frame )
  247. {
  248.     int          slen = strlen(Y4M_FRAME_MAGIC);
  249.     int          i    = 0;
  250.     char         header[16];
  251.     y4m_input_t *h    = handle;
  252.     if( i_frame != h->next_frame )
  253.     {
  254.         if( fseek( h->fh, (uint64_t)i_frame*(3*(h->width*h->height)/2+h->frame_header_len)
  255.                  + h->seq_header_len, SEEK_SET ) )
  256.             return -1;
  257.     }
  258.     /* Read frame header - without terminating 'n' */
  259.     if( fread( header, 1, slen, h->fh ) != slen )
  260.         return -1;
  261.     header[slen] = 0;
  262.     if( strncmp( header, Y4M_FRAME_MAGIC, slen ) )
  263.     {
  264.         //配置MS VC环境 --@lia  " 前加"" 
  265. fprintf( stderr, "Bad header magic (%"PRIx32/" <=> %s)n",
  266.                 *((uint32_t*)header), header );
  267.         return -1;
  268.     }
  269.     /* Skip most of it */
  270.     while( i<MAX_FRAME_HEADER && fgetc(h->fh) != 'n' )
  271.         i++;
  272.     if( i == MAX_FRAME_HEADER )
  273.     {
  274.         fprintf( stderr, "Bad frame header!n" );
  275.         return -1;
  276.     }
  277.     h->frame_header_len = i+slen+1;
  278.     if( fread( p_pic->img.plane[0], 1, h->width*h->height, h->fh ) <= 0
  279.      || fread( p_pic->img.plane[1], 1, h->width * h->height / 4, h->fh ) <= 0
  280.      || fread( p_pic->img.plane[2], 1, h->width * h->height / 4, h->fh ) <= 0)
  281.         return -1;
  282.     h->next_frame = i_frame+1;
  283.     return 0;
  284. }
  285. int close_file_y4m(hnd_t handle)
  286. {
  287.     y4m_input_t *h = handle;
  288.     if( !h || !h->fh )
  289.         return 0;
  290.     fclose( h->fh );
  291.     free( h );
  292.     return 0;
  293. }
  294. /* avs/avi input file support under cygwin */
  295. #ifdef AVIS_INPUT
  296. typedef struct
  297. {
  298.     PAVISTREAM p_avi;
  299.     int width, height;
  300. } avis_input_t;
  301. int open_file_avis( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param )
  302. {
  303.     avis_input_t *h = malloc( sizeof(avis_input_t) );
  304. //C程序不能中间定义变量 --@lia
  305. AVISTREAMINFO info;
  306. int i;
  307.     if( !h )
  308.         return -1;
  309. //C程序不能中间定义变量 --@lia
  310.     //AVISTREAMINFO info;
  311.     //int i;
  312.     *p_handle = (hnd_t)h;
  313.     AVIFileInit();
  314.     if( AVIStreamOpenFromFile( &h->p_avi, psz_filename, streamtypeVIDEO, 0, OF_READ, NULL ) )
  315.     {
  316.         AVIFileExit();
  317.         return -1;
  318.     }
  319.     if( AVIStreamInfo( h->p_avi, &info, sizeof(AVISTREAMINFO) ) )
  320.     {
  321.         AVIStreamRelease(h->p_avi);
  322.         AVIFileExit();
  323.         return -1;
  324.     }
  325.     // check input format
  326.     if( info.fccHandler != MAKEFOURCC('Y', 'V', '1', '2') )
  327.     {
  328.         fprintf( stderr, "avis [error]: unsupported input format (%c%c%c%c)n",
  329.             (char)(info.fccHandler & 0xff), (char)((info.fccHandler >> 8) & 0xff),
  330.             (char)((info.fccHandler >> 16) & 0xff), (char)((info.fccHandler >> 24)) );
  331.         AVIStreamRelease( h->p_avi );
  332.         AVIFileExit();
  333.         return -1;
  334.     }
  335.     h->width =
  336.     p_param->i_width = info.rcFrame.right - info.rcFrame.left;
  337.     h->height =
  338.     p_param->i_height = info.rcFrame.bottom - info.rcFrame.top;
  339.     i = gcd(info.dwRate, info.dwScale);
  340.     p_param->i_fps_den = info.dwScale / i;
  341.     p_param->i_fps_num = info.dwRate / i;
  342.     fprintf( stderr, "avis [info]: %dx%d @ %.2f fps (%d frames)n",
  343.              p_param->i_width, p_param->i_height,
  344.              (double)p_param->i_fps_num / (double)p_param->i_fps_den,
  345.              (int)info.dwLength );
  346.     return 0;
  347. }
  348. int get_frame_total_avis( hnd_t handle )
  349. {
  350.     avis_input_t *h = handle;
  351.     AVISTREAMINFO info;
  352.     if( AVIStreamInfo( h->p_avi, &info, sizeof(AVISTREAMINFO) ) )
  353.         return -1;
  354.     return info.dwLength;
  355. }
  356. int read_frame_avis( x264_picture_t *p_pic, hnd_t handle, int i_frame )
  357. {
  358.     avis_input_t *h = handle;
  359.     p_pic->img.i_csp = X264_CSP_YV12;
  360.     if( AVIStreamRead( h->p_avi, i_frame, 1, p_pic->img.plane[0], h->width * h->height * 3 / 2, NULL, NULL ) )
  361.         return -1;
  362.     return 0;
  363. }
  364. int close_file_avis( hnd_t handle )
  365. {
  366.     avis_input_t *h = handle;
  367.     AVIStreamRelease( h->p_avi );
  368.     AVIFileExit();
  369.     free( h );
  370.     return 0;
  371. }
  372. #endif
  373. #ifdef HAVE_PTHREAD
  374. typedef struct
  375. {
  376.     int (*p_read_frame)( x264_picture_t *p_pic, hnd_t handle, int i_frame );
  377.     int (*p_close_infile)( hnd_t handle );
  378.     hnd_t p_handle;
  379.     x264_picture_t pic;
  380.     x264_pthread_t tid;
  381.     int next_frame;
  382.     int frame_total;
  383.     int in_progress;
  384.     struct thread_input_arg_t *next_args;
  385. } thread_input_t;
  386. typedef struct thread_input_arg_t
  387. {
  388.     thread_input_t *h;
  389.     x264_picture_t *pic;
  390.     int i_frame;
  391.     int status;
  392. } thread_input_arg_t;
  393. int open_file_thread( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param )
  394. {
  395.     thread_input_t *h = malloc( sizeof(thread_input_t) );
  396.     if( !h || x264_picture_alloc( &h->pic, X264_CSP_I420, p_param->i_width, p_param->i_height ) < 0 )
  397.     {
  398.         fprintf( stderr, "x264 [error]: malloc failedn" );
  399.         return -1;
  400.     }
  401.     h->p_read_frame = p_read_frame;
  402.     h->p_close_infile = p_close_infile;
  403.     h->p_handle = *p_handle;
  404.     h->in_progress = 0;
  405.     h->next_frame = -1;
  406.     h->next_args = malloc(sizeof(thread_input_arg_t));
  407.     if( !h->next_args )
  408.         return -1;
  409.     h->next_args->h = h;
  410.     h->next_args->status = 0;
  411.     h->frame_total = p_get_frame_total( h->p_handle );
  412.     *p_handle = (hnd_t)h;
  413.     return 0;
  414. }
  415. int get_frame_total_thread( hnd_t handle )
  416. {
  417.     thread_input_t *h = handle;
  418.     return h->frame_total;
  419. }
  420. static void read_frame_thread_int( thread_input_arg_t *i )
  421. {
  422.     i->status = i->h->p_read_frame( i->pic, i->h->p_handle, i->i_frame );
  423. }
  424. int read_frame_thread( x264_picture_t *p_pic, hnd_t handle, int i_frame )
  425. {
  426.     thread_input_t *h = handle;
  427.     int ret = 0;
  428.     if( h->next_frame >= 0 )
  429.     {
  430.         x264_pthread_join( h->tid, NULL );
  431.         ret |= h->next_args->status;
  432.         h->in_progress = 0;
  433.     }
  434.     if( h->next_frame == i_frame )
  435.     {
  436.         XCHG( x264_picture_t, *p_pic, h->pic );
  437.     }
  438.     else
  439.     {
  440.         ret |= h->p_read_frame( p_pic, h->p_handle, i_frame );
  441.     }
  442.     if( !h->frame_total || i_frame+1 < h->frame_total )
  443.     {
  444.         h->next_frame =
  445.         h->next_args->i_frame = i_frame+1;
  446.         h->next_args->pic = &h->pic;
  447.         if( x264_pthread_create( &h->tid, NULL, (void*)read_frame_thread_int, h->next_args ) )
  448.             return -1;
  449.         h->in_progress = 1;
  450.     }
  451.     else
  452.         h->next_frame = -1;
  453.     return ret;
  454. }
  455. int close_file_thread( hnd_t handle )
  456. {
  457.     thread_input_t *h = handle;
  458.     if( h->in_progress )
  459.         x264_pthread_join( h->tid, NULL );
  460.     h->p_close_infile( h->p_handle );
  461.     x264_picture_clean( &h->pic );
  462.     free( h->next_args );
  463.     free( h );
  464.     return 0;
  465. }
  466. #endif
  467. int open_file_bsf( char *psz_filename, hnd_t *p_handle )
  468. {
  469.     if( !(*p_handle = fopen(psz_filename, "w+b")) )
  470.         return -1;
  471.     return 0;
  472. }
  473. int set_param_bsf( hnd_t handle, x264_param_t *p_param )
  474. {
  475.     return 0;
  476. }
  477. int write_nalu_bsf( hnd_t handle, uint8_t *p_nalu, int i_size )
  478. {
  479.     if( fwrite( p_nalu, i_size, 1, (FILE*)handle ) > 0 )
  480.         return i_size;
  481.     return -1;
  482. }
  483. int set_eop_bsf( hnd_t handle,  x264_picture_t *p_picture )
  484. {
  485.     return 0;
  486. }
  487. int close_file_bsf( hnd_t handle )
  488. {
  489.     if( !handle || handle == stdout )
  490.         return 0;
  491.     return fclose( (FILE*)handle );
  492. }
  493. /* -- mp4 muxing support ------------------------------------------------- */
  494. #ifdef MP4_OUTPUT
  495. typedef struct
  496. {
  497.     GF_ISOFile *p_file;
  498.     GF_AVCConfig *p_config;
  499.     GF_ISOSample *p_sample;
  500.     int i_track;
  501.     uint32_t i_descidx;
  502.     int i_time_inc;
  503.     int i_time_res;
  504.     int i_numframe;
  505.     int i_init_delay;
  506.     uint8_t b_sps;
  507.     uint8_t b_pps;
  508. } mp4_t;
  509. static void recompute_bitrate_mp4(GF_ISOFile *p_file, int i_track)
  510. {
  511.     u32 i, count, di, timescale, time_wnd, rate;
  512.     u64 offset;
  513.     Double br;
  514.     GF_ESD *esd;
  515.     esd = gf_isom_get_esd( p_file, i_track, 1 );
  516.     if( !esd )
  517.         return;
  518.     esd->decoderConfig->avgBitrate = 0;
  519.     esd->decoderConfig->maxBitrate = 0;
  520.     rate = time_wnd = 0;
  521.     timescale = gf_isom_get_media_timescale( p_file, i_track );
  522.     count = gf_isom_get_sample_count( p_file, i_track );
  523.     for( i = 0; i < count; i++ )
  524.     {
  525.         GF_ISOSample *samp = gf_isom_get_sample_info( p_file, i_track, i+1, &di, &offset );
  526.         if( samp->dataLength>esd->decoderConfig->bufferSizeDB )
  527.             esd->decoderConfig->bufferSizeDB = samp->dataLength;
  528.         if( esd->decoderConfig->bufferSizeDB < samp->dataLength )
  529.             esd->decoderConfig->bufferSizeDB = samp->dataLength;
  530.         esd->decoderConfig->avgBitrate += samp->dataLength;
  531.         rate += samp->dataLength;
  532.         if( samp->DTS > time_wnd + timescale )
  533.         {
  534.             if( rate > esd->decoderConfig->maxBitrate )
  535.                 esd->decoderConfig->maxBitrate = rate;
  536.             time_wnd = samp->DTS;
  537.             rate = 0;
  538.         }
  539.         gf_isom_sample_del( &samp );
  540.     }
  541.     br = (Double)(s64)gf_isom_get_media_duration( p_file, i_track );
  542.     br /= timescale;
  543.     esd->decoderConfig->avgBitrate = (u32)(esd->decoderConfig->avgBitrate / br);
  544.     /*move to bps*/
  545.     esd->decoderConfig->avgBitrate *= 8;
  546.     esd->decoderConfig->maxBitrate *= 8;
  547.     gf_isom_change_mpeg4_description( p_file, i_track, 1, esd );
  548.     gf_odf_desc_del( (GF_Descriptor*)esd );
  549. }
  550. int close_file_mp4( hnd_t handle )
  551. {
  552.     mp4_t *p_mp4 = (mp4_t*)handle;
  553.     if( !p_mp4 )
  554.         return 0;
  555.     if( p_mp4->p_config )
  556.         gf_odf_avc_cfg_del( p_mp4->p_config );
  557.     if( p_mp4->p_sample )
  558.     {
  559.         if( p_mp4->p_sample->data )
  560.             free( p_mp4->p_sample->data );
  561.         gf_isom_sample_del( &p_mp4->p_sample );
  562.     }
  563.     if( p_mp4->p_file )
  564.     {
  565.         recompute_bitrate_mp4( p_mp4->p_file, p_mp4->i_track );
  566.         gf_isom_set_pl_indication( p_mp4->p_file, GF_ISOM_PL_VISUAL, 0x15 );
  567.         gf_isom_set_storage_mode( p_mp4->p_file, GF_ISOM_STORE_FLAT );
  568.         gf_isom_close( p_mp4->p_file );
  569.     }
  570.     free( p_mp4 );
  571.     return 0;
  572. }
  573. int open_file_mp4( char *psz_filename, hnd_t *p_handle )
  574. {
  575.     mp4_t *p_mp4;
  576.     *p_handle = NULL;
  577.     if( !(p_mp4 = malloc(sizeof(mp4_t))) )
  578.         return -1;
  579.     memset( p_mp4, 0, sizeof(mp4_t) );
  580.     p_mp4->p_file = gf_isom_open( psz_filename, GF_ISOM_OPEN_WRITE, NULL );
  581.     if( !(p_mp4->p_sample = gf_isom_sample_new()) )
  582.     {
  583.         close_file_mp4( p_mp4 );
  584.         return -1;
  585.     }
  586.     gf_isom_set_brand_info( p_mp4->p_file, GF_ISOM_BRAND_AVC1, 0 );
  587.     *p_handle = p_mp4;
  588.     return 0;
  589. }
  590. int set_param_mp4( hnd_t handle, x264_param_t *p_param )
  591. {
  592.     mp4_t *p_mp4 = (mp4_t*)handle;
  593.     p_mp4->i_track = gf_isom_new_track( p_mp4->p_file, 0, GF_ISOM_MEDIA_VISUAL,
  594.                                         p_param->i_fps_num );
  595.     p_mp4->p_config = gf_odf_avc_cfg_new();
  596.     gf_isom_avc_config_new( p_mp4->p_file, p_mp4->i_track, p_mp4->p_config,
  597.                             NULL, NULL, &p_mp4->i_descidx );
  598.     gf_isom_set_track_enabled( p_mp4->p_file, p_mp4->i_track, 1 );
  599.     gf_isom_set_visual_info( p_mp4->p_file, p_mp4->i_track, p_mp4->i_descidx,
  600.                              p_param->i_width, p_param->i_height );
  601.     if( p_param->vui.i_sar_width && p_param->vui.i_sar_height )
  602.     {
  603.         uint64_t dw = p_param->i_width << 16;
  604.         uint64_t dh = p_param->i_height << 16;
  605.         double sar = (double)p_param->vui.i_sar_width / p_param->vui.i_sar_height;
  606.         if( sar > 1.0 )
  607.             dw *= sar ;
  608.         else
  609.             dh /= sar;
  610.         gf_isom_set_track_layout_info( p_mp4->p_file, p_mp4->i_track, dw, dh, 0, 0, 0 );
  611.     }
  612.     p_mp4->p_sample->data = malloc( p_param->i_width * p_param->i_height * 3 / 2 );
  613.     if( !p_mp4->p_sample->data )
  614.         return -1;
  615.     p_mp4->i_time_res = p_param->i_fps_num;
  616.     p_mp4->i_time_inc = p_param->i_fps_den;
  617.     p_mp4->i_init_delay = p_param->i_bframe ? (p_param->b_bframe_pyramid ? 2 : 1) : 0;
  618.     p_mp4->i_init_delay *= p_mp4->i_time_inc;
  619.     fprintf( stderr, "mp4 [info]: initial delay %d (scale %d)n",
  620.              p_mp4->i_init_delay, p_mp4->i_time_res );
  621.     return 0;
  622. }
  623. int write_nalu_mp4( hnd_t handle, uint8_t *p_nalu, int i_size )
  624. {
  625.     mp4_t *p_mp4 = (mp4_t*)handle;
  626.     GF_AVCConfigSlot *p_slot;
  627.     uint8_t type = p_nalu[4] & 0x1f;
  628.     int psize;
  629.     switch( type )
  630.     {
  631.         // sps
  632.         case 0x07:
  633.             if( !p_mp4->b_sps )
  634.             {
  635.                 p_mp4->p_config->configurationVersion = 1;
  636.                 p_mp4->p_config->AVCProfileIndication = p_nalu[5];
  637.                 p_mp4->p_config->profile_compatibility = p_nalu[6];
  638.                 p_mp4->p_config->AVCLevelIndication = p_nalu[7];
  639.                 p_slot = malloc( sizeof(GF_AVCConfigSlot) );
  640.                 if( !p_slot )
  641.                     return -1;
  642.                 p_slot->size = i_size - 4;
  643.                 p_slot->data = malloc( p_slot->size );
  644.                 if( !p_slot->data )
  645.                     return -1;
  646.                 memcpy( p_slot->data, p_nalu + 4, i_size - 4 );
  647.                 gf_list_add( p_mp4->p_config->sequenceParameterSets, p_slot );
  648.                 p_slot = NULL;
  649.                 p_mp4->b_sps = 1;
  650.             }
  651.             break;
  652.         // pps
  653.         case 0x08:
  654.             if( !p_mp4->b_pps )
  655.             {
  656.                 p_slot = malloc( sizeof(GF_AVCConfigSlot) );
  657.                 if( !p_slot )
  658.                     return -1;
  659.                 p_slot->size = i_size - 4;
  660.                 p_slot->data = malloc( p_slot->size );
  661.                 if( !p_slot->data )
  662.                     return -1;
  663.                 memcpy( p_slot->data, p_nalu + 4, i_size - 4 );
  664.                 gf_list_add( p_mp4->p_config->pictureParameterSets, p_slot );
  665.                 p_slot = NULL;
  666.                 p_mp4->b_pps = 1;
  667.                 if( p_mp4->b_sps )
  668.                     gf_isom_avc_config_update( p_mp4->p_file, p_mp4->i_track, 1, p_mp4->p_config );
  669.             }
  670.             break;
  671.         // slice, sei
  672.         case 0x1:
  673.         case 0x5:
  674.         case 0x6:
  675.             psize = i_size - 4 ;
  676.             memcpy( p_mp4->p_sample->data + p_mp4->p_sample->dataLength, p_nalu, i_size );
  677.             p_mp4->p_sample->data[p_mp4->p_sample->dataLength + 0] = psize >> 24;
  678.             p_mp4->p_sample->data[p_mp4->p_sample->dataLength + 1] = psize >> 16;
  679.             p_mp4->p_sample->data[p_mp4->p_sample->dataLength + 2] = psize >>  8;
  680.             p_mp4->p_sample->data[p_mp4->p_sample->dataLength + 3] = psize >>  0;
  681.             p_mp4->p_sample->dataLength += i_size;
  682.             break;
  683.     }
  684.     return i_size;
  685. }
  686. int set_eop_mp4( hnd_t handle, x264_picture_t *p_picture )
  687. {
  688.     mp4_t *p_mp4 = (mp4_t*)handle;
  689.     uint64_t dts = (uint64_t)p_mp4->i_numframe * p_mp4->i_time_inc;
  690.     uint64_t pts = (uint64_t)p_picture->i_pts;
  691.     int32_t offset = p_mp4->i_init_delay + pts - dts;
  692.     p_mp4->p_sample->IsRAP = p_picture->i_type == X264_TYPE_IDR ? 1 : 0;
  693.     p_mp4->p_sample->DTS = dts;
  694.     p_mp4->p_sample->CTS_Offset = offset;
  695.     gf_isom_add_sample( p_mp4->p_file, p_mp4->i_track, p_mp4->i_descidx, p_mp4->p_sample );
  696.     p_mp4->p_sample->dataLength = 0;
  697.     p_mp4->i_numframe++;
  698.     return 0;
  699. }
  700. #endif
  701. /* -- mkv muxing support ------------------------------------------------- */
  702. typedef struct
  703. {
  704.     mk_writer *w;
  705.     uint8_t *sps, *pps;
  706.     int sps_len, pps_len;
  707.     int width, height, d_width, d_height;
  708.     int64_t frame_duration;
  709.     int fps_num;
  710.     int b_header_written;
  711.     char b_writing_frame;
  712. } mkv_t;
  713. static int write_header_mkv( mkv_t *p_mkv )
  714. {
  715.     int ret;
  716.     uint8_t *avcC;
  717.     int avcC_len;
  718.     if( !p_mkv->sps || !p_mkv->pps ||
  719.         !p_mkv->width || !p_mkv->height ||
  720.         !p_mkv->d_width || !p_mkv->d_height )
  721.         return -1;
  722.     avcC_len = 5 + 1 + 2 + p_mkv->sps_len + 1 + 2 + p_mkv->pps_len;
  723.     avcC = malloc( avcC_len );
  724.     if( !avcC )
  725.         return -1;
  726.     avcC[0] = 1;
  727.     avcC[1] = p_mkv->sps[1];
  728.     avcC[2] = p_mkv->sps[2];
  729.     avcC[3] = p_mkv->sps[3];
  730.     avcC[4] = 0xff; // nalu size length is four bytes
  731.     avcC[5] = 0xe1; // one sps
  732.     avcC[6] = p_mkv->sps_len >> 8;
  733.     avcC[7] = p_mkv->sps_len;
  734.     memcpy( avcC+8, p_mkv->sps, p_mkv->sps_len );
  735.     avcC[8+p_mkv->sps_len] = 1; // one pps
  736.     avcC[9+p_mkv->sps_len] = p_mkv->pps_len >> 8;
  737.     avcC[10+p_mkv->sps_len] = p_mkv->pps_len;
  738.     memcpy( avcC+11+p_mkv->sps_len, p_mkv->pps, p_mkv->pps_len );
  739.     ret = mk_writeHeader( p_mkv->w, "x264", "V_MPEG4/ISO/AVC",
  740.                           avcC, avcC_len, p_mkv->frame_duration, 50000,
  741.                           p_mkv->width, p_mkv->height,
  742.                           p_mkv->d_width, p_mkv->d_height );
  743.     free( avcC );
  744.     p_mkv->b_header_written = 1;
  745.     return ret;
  746. }
  747. int open_file_mkv( char *psz_filename, hnd_t *p_handle )
  748. {
  749.     mkv_t *p_mkv;
  750.     *p_handle = NULL;
  751.     p_mkv  = malloc( sizeof(*p_mkv) );
  752.     if( !p_mkv )
  753.         return -1;
  754.     memset( p_mkv, 0, sizeof(*p_mkv) );
  755.     p_mkv->w = mk_create_writer( psz_filename );
  756.     if( !p_mkv->w )
  757.     {
  758.         free( p_mkv );
  759.         return -1;
  760.     }
  761.     *p_handle = p_mkv;
  762.     return 0;
  763. }
  764. int set_param_mkv( hnd_t handle, x264_param_t *p_param )
  765. {
  766.     mkv_t   *p_mkv = handle;
  767.     int64_t dw, dh;
  768.     if( p_param->i_fps_num > 0 )
  769.     {
  770.         p_mkv->frame_duration = (int64_t)p_param->i_fps_den *
  771.                                 (int64_t)1000000000 / p_param->i_fps_num;
  772.         p_mkv->fps_num = p_param->i_fps_num;
  773.     }
  774.     else
  775.     {
  776.         p_mkv->frame_duration = 0;
  777.         p_mkv->fps_num = 1;
  778.     }
  779.     p_mkv->width = p_param->i_width;
  780.     p_mkv->height = p_param->i_height;
  781.     if( p_param->vui.i_sar_width && p_param->vui.i_sar_height )
  782.     {
  783.         dw = (int64_t)p_param->i_width  * p_param->vui.i_sar_width;
  784.         dh = (int64_t)p_param->i_height * p_param->vui.i_sar_height;
  785.     }
  786.     else
  787.     {
  788.         dw = p_param->i_width;
  789.         dh = p_param->i_height;
  790.     }
  791.     if( dw > 0 && dh > 0 )
  792.     {
  793.         int64_t x = gcd( dw, dh );
  794.         dw /= x;
  795.         dh /= x;
  796.     }
  797.     p_mkv->d_width = (int)dw;
  798.     p_mkv->d_height = (int)dh;
  799.     return 0;
  800. }
  801. int write_nalu_mkv( hnd_t handle, uint8_t *p_nalu, int i_size )
  802. {
  803.     mkv_t *p_mkv = handle;
  804.     uint8_t type = p_nalu[4] & 0x1f;
  805.     uint8_t dsize[4];
  806.     int psize;
  807.     switch( type )
  808.     {
  809.         // sps
  810.         case 0x07:
  811.             if( !p_mkv->sps )
  812.             {
  813.                 p_mkv->sps = malloc( i_size - 4 );
  814.                 if( !p_mkv->sps )
  815.                     return -1;
  816.                 p_mkv->sps_len = i_size - 4;
  817.                 memcpy( p_mkv->sps, p_nalu + 4, i_size - 4 );
  818.             }
  819.             break;
  820.         // pps
  821.         case 0x08:
  822.             if( !p_mkv->pps )
  823.             {
  824.                 p_mkv->pps = malloc( i_size - 4 );
  825.                 if( !p_mkv->pps )
  826.                     return -1;
  827.                 p_mkv->pps_len = i_size - 4;
  828.                 memcpy( p_mkv->pps, p_nalu + 4, i_size - 4 );
  829.             }
  830.             break;
  831.         // slice, sei
  832.         case 0x1:
  833.         case 0x5:
  834.         case 0x6:
  835.             if( !p_mkv->b_writing_frame )
  836.             {
  837.                 if( mk_start_frame( p_mkv->w ) < 0 )
  838.                     return -1;
  839.                 p_mkv->b_writing_frame = 1;
  840.             }
  841.             psize = i_size - 4 ;
  842.             dsize[0] = psize >> 24;
  843.             dsize[1] = psize >> 16;
  844.             dsize[2] = psize >> 8;
  845.             dsize[3] = psize;
  846.             if( mk_add_frame_data( p_mkv->w, dsize, 4 ) < 0 ||
  847.                 mk_add_frame_data( p_mkv->w, p_nalu + 4, i_size - 4 ) < 0 )
  848.                 return -1;
  849.             break;
  850.         default:
  851.             break;
  852.     }
  853.     if( !p_mkv->b_header_written && p_mkv->pps && p_mkv->sps &&
  854.         write_header_mkv( p_mkv ) < 0 )
  855.         return -1;
  856.     return i_size;
  857. }
  858. int set_eop_mkv( hnd_t handle, x264_picture_t *p_picture )
  859. {
  860.     mkv_t *p_mkv = handle;
  861.     int64_t i_stamp = (int64_t)(p_picture->i_pts * 1e9 / p_mkv->fps_num);
  862.     p_mkv->b_writing_frame = 0;
  863.     return mk_set_frame_flags( p_mkv->w, i_stamp, p_picture->i_type == X264_TYPE_IDR );
  864. }
  865. int close_file_mkv( hnd_t handle )
  866. {
  867.     mkv_t *p_mkv = handle;
  868.     int   ret;
  869.     if( p_mkv->sps )
  870.         free( p_mkv->sps );
  871.     if( p_mkv->pps )
  872.         free( p_mkv->pps );
  873.     ret = mk_close( p_mkv->w );
  874.     free( p_mkv );
  875.     return ret;
  876. }