Updating the Encoding Time Calculation
[SFUResearch.git] / muxers.c
blob51f82bb101a72646f17bfc753c9435d4f7990335
1 /*****************************************************************************
2 * muxers.c: h264 file i/o plugins
3 *****************************************************************************
4 * Copyright (C) 2003-2008 x264 project
6 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
7 * Loren Merritt <lorenm@u.washington.edu>
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.
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.
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 *****************************************************************************/
24 #include "common/common.h"
25 #include "x264.h"
26 #include "matroska.h"
27 #include "muxers.h"
29 #ifndef _MSC_VER
30 #include "config.h"
31 #endif
33 #include <sys/types.h>
35 #ifdef AVIS_INPUT
36 #include <windows.h>
37 #include <vfw.h>
38 #endif
40 #ifdef MP4_OUTPUT
41 #include <gpac/isomedia.h>
42 #endif
44 static int64_t gcd( int64_t a, int64_t b )
46 while (1)
48 int64_t c = a % b;
49 if( !c )
50 return b;
51 a = b;
52 b = c;
56 typedef struct {
57 FILE *fh;
58 int width, height;
59 int next_frame;
60 } yuv_input_t;
62 /* raw 420 yuv file operation */
63 int open_file_yuv( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param )
65 yuv_input_t *h = malloc(sizeof(yuv_input_t));
66 h->width = p_param->i_width;
67 h->height = p_param->i_height;
68 h->next_frame = 0;
70 if( !strcmp(psz_filename, "-") )
71 h->fh = stdin;
72 else
73 h->fh = fopen(psz_filename, "rb");
74 if( h->fh == NULL )
75 return -1;
77 *p_handle = (hnd_t)h;
78 return 0;
81 int get_frame_total_yuv( hnd_t handle )
83 yuv_input_t *h = handle;
84 int i_frame_total = 0;
86 if( !fseek( h->fh, 0, SEEK_END ) )
88 uint64_t i_size = ftell( h->fh );
89 fseek( h->fh, 0, SEEK_SET );
90 i_frame_total = (int)(i_size / ( h->width * h->height * 3 / 2 ));
93 return i_frame_total;
96 int read_frame_yuv( x264_picture_t *p_pic, hnd_t handle, int i_frame )
98 yuv_input_t *h = handle;
100 if( i_frame != h->next_frame )
101 if( fseek( h->fh, (uint64_t)i_frame * h->width * h->height * 3 / 2, SEEK_SET ) )
102 return -1;
104 if( fread( p_pic->img.plane[0], 1, h->width * h->height, h->fh ) <= 0
105 || fread( p_pic->img.plane[1], 1, h->width * h->height / 4, h->fh ) <= 0
106 || fread( p_pic->img.plane[2], 1, h->width * h->height / 4, h->fh ) <= 0 )
107 return -1;
109 h->next_frame = i_frame+1;
111 return 0;
114 int close_file_yuv(hnd_t handle)
116 yuv_input_t *h = handle;
117 if( !h || !h->fh )
118 return 0;
119 fclose( h->fh );
120 free( h );
121 return 0;
124 /* YUV4MPEG2 raw 420 yuv file operation */
125 typedef struct {
126 FILE *fh;
127 int width, height;
128 int next_frame;
129 int seq_header_len, frame_header_len;
130 int frame_size;
131 } y4m_input_t;
133 #define Y4M_MAGIC "YUV4MPEG2"
134 #define MAX_YUV4_HEADER 80
135 #define Y4M_FRAME_MAGIC "FRAME"
136 #define MAX_FRAME_HEADER 80
138 int open_file_y4m( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param )
140 int i, n, d;
141 int interlaced;
142 char header[MAX_YUV4_HEADER+10];
143 char *tokstart, *tokend, *header_end;
144 y4m_input_t *h = malloc(sizeof(y4m_input_t));
146 h->next_frame = 0;
148 if( !strcmp(psz_filename, "-") )
149 h->fh = stdin;
150 else
151 h->fh = fopen(psz_filename, "rb");
152 if( h->fh == NULL )
153 return -1;
155 h->frame_header_len = strlen(Y4M_FRAME_MAGIC)+1;
157 /* Read header */
158 for( i=0; i<MAX_YUV4_HEADER; i++ )
160 header[i] = fgetc(h->fh);
161 if( header[i] == '\n' )
163 /* Add a space after last option. Makes parsing "444" vs
164 "444alpha" easier. */
165 header[i+1] = 0x20;
166 header[i+2] = 0;
167 break;
170 if( i == MAX_YUV4_HEADER || strncmp(header, Y4M_MAGIC, strlen(Y4M_MAGIC)) )
171 return -1;
173 /* Scan properties */
174 header_end = &header[i+1]; /* Include space */
175 h->seq_header_len = i+1;
176 for( tokstart = &header[strlen(Y4M_MAGIC)+1]; tokstart < header_end; tokstart++ )
178 if(*tokstart==0x20) continue;
179 switch(*tokstart++)
181 case 'W': /* Width. Required. */
182 h->width = p_param->i_width = strtol(tokstart, &tokend, 10);
183 tokstart=tokend;
184 break;
185 case 'H': /* Height. Required. */
186 h->height = p_param->i_height = strtol(tokstart, &tokend, 10);
187 tokstart=tokend;
188 break;
189 case 'C': /* Color space */
190 if( strncmp("420", tokstart, 3) )
192 fprintf(stderr, "Colorspace unhandled\n");
193 return -1;
195 tokstart = strchr(tokstart, 0x20);
196 break;
197 case 'I': /* Interlace type */
198 switch(*tokstart++)
200 case 'p': interlaced = 0; break;
201 case '?':
202 case 't':
203 case 'b':
204 case 'm':
205 default: interlaced = 1;
206 fprintf(stderr, "Warning, this sequence might be interlaced\n");
208 break;
209 case 'F': /* Frame rate - 0:0 if unknown */
210 if( sscanf(tokstart, "%d:%d", &n, &d) == 2 && n && d )
212 x264_reduce_fraction( &n, &d );
213 p_param->i_fps_num = n;
214 p_param->i_fps_den = d;
216 tokstart = strchr(tokstart, 0x20);
217 break;
218 case 'A': /* Pixel aspect - 0:0 if unknown */
219 /* Don't override the aspect ratio if sar has been explicitly set on the commandline. */
220 if( sscanf(tokstart, "%d:%d", &n, &d) == 2 && n && d && !p_param->vui.i_sar_width && !p_param->vui.i_sar_height )
222 x264_reduce_fraction( &n, &d );
223 p_param->vui.i_sar_width = n;
224 p_param->vui.i_sar_height = d;
226 tokstart = strchr(tokstart, 0x20);
227 break;
228 case 'X': /* Vendor extensions */
229 if( !strncmp("YSCSS=",tokstart,6) )
231 /* Older nonstandard pixel format representation */
232 tokstart += 6;
233 if( strncmp("420JPEG",tokstart,7) &&
234 strncmp("420MPEG2",tokstart,8) &&
235 strncmp("420PALDV",tokstart,8) )
237 fprintf(stderr, "Unsupported extended colorspace\n");
238 return -1;
241 tokstart = strchr(tokstart, 0x20);
242 break;
246 fprintf(stderr, "yuv4mpeg: %ix%i@%i/%ifps, %i:%i\n",
247 h->width, h->height, p_param->i_fps_num, p_param->i_fps_den,
248 p_param->vui.i_sar_width, p_param->vui.i_sar_height);
250 *p_handle = (hnd_t)h;
251 return 0;
254 /* Most common case: frame_header = "FRAME" */
255 int get_frame_total_y4m( hnd_t handle )
257 y4m_input_t *h = handle;
258 int i_frame_total = 0;
259 uint64_t init_pos = ftell(h->fh);
261 if( !fseek( h->fh, 0, SEEK_END ) )
263 uint64_t i_size = ftell( h->fh );
264 fseek( h->fh, init_pos, SEEK_SET );
265 i_frame_total = (int)((i_size - h->seq_header_len) /
266 (3*(h->width*h->height)/2+h->frame_header_len));
269 return i_frame_total;
272 int read_frame_y4m( x264_picture_t *p_pic, hnd_t handle, int i_frame )
274 int slen = strlen(Y4M_FRAME_MAGIC);
275 int i = 0;
276 char header[16];
277 y4m_input_t *h = handle;
279 if( i_frame != h->next_frame )
281 if (fseek(h->fh, (uint64_t)i_frame*(3*(h->width*h->height)/2+h->frame_header_len)
282 + h->seq_header_len, SEEK_SET))
283 return -1;
286 /* Read frame header - without terminating '\n' */
287 if (fread(header, 1, slen, h->fh) != slen)
288 return -1;
290 header[slen] = 0;
291 if (strncmp(header, Y4M_FRAME_MAGIC, slen))
293 fprintf(stderr, "Bad header magic (%08X <=> %s)\n",
294 *((uint32_t*)header), header);
295 return -1;
298 /* Skip most of it */
299 while (i<MAX_FRAME_HEADER && fgetc(h->fh) != '\n')
300 i++;
301 if (i == MAX_FRAME_HEADER)
303 fprintf(stderr, "Bad frame header!\n");
304 return -1;
306 h->frame_header_len = i+slen+1;
308 if( fread(p_pic->img.plane[0], 1, h->width*h->height, h->fh) <= 0
309 || fread(p_pic->img.plane[1], 1, h->width * h->height / 4, h->fh) <= 0
310 || fread(p_pic->img.plane[2], 1, h->width * h->height / 4, h->fh) <= 0)
311 return -1;
313 h->next_frame = i_frame+1;
315 return 0;
318 int close_file_y4m(hnd_t handle)
320 y4m_input_t *h = handle;
321 if( !h || !h->fh )
322 return 0;
323 fclose( h->fh );
324 free( h );
325 return 0;
328 /* avs/avi input file support under cygwin */
330 #ifdef AVIS_INPUT
331 typedef struct {
332 PAVISTREAM p_avi;
333 int width, height;
334 } avis_input_t;
336 int open_file_avis( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param )
338 avis_input_t *h = malloc(sizeof(avis_input_t));
339 AVISTREAMINFO info;
340 int i;
342 *p_handle = (hnd_t)h;
344 AVIFileInit();
345 if( AVIStreamOpenFromFile( &h->p_avi, psz_filename, streamtypeVIDEO, 0, OF_READ, NULL ) )
347 AVIFileExit();
348 return -1;
351 if( AVIStreamInfo(h->p_avi, &info, sizeof(AVISTREAMINFO)) )
353 AVIStreamRelease(h->p_avi);
354 AVIFileExit();
355 return -1;
358 // check input format
359 if (info.fccHandler != MAKEFOURCC('Y', 'V', '1', '2'))
361 fprintf( stderr, "avis [error]: unsupported input format (%c%c%c%c)\n",
362 (char)(info.fccHandler & 0xff), (char)((info.fccHandler >> 8) & 0xff),
363 (char)((info.fccHandler >> 16) & 0xff), (char)((info.fccHandler >> 24)) );
365 AVIStreamRelease(h->p_avi);
366 AVIFileExit();
368 return -1;
371 h->width =
372 p_param->i_width = info.rcFrame.right - info.rcFrame.left;
373 h->height =
374 p_param->i_height = info.rcFrame.bottom - info.rcFrame.top;
375 i = gcd(info.dwRate, info.dwScale);
376 p_param->i_fps_den = info.dwScale / i;
377 p_param->i_fps_num = info.dwRate / i;
379 fprintf( stderr, "avis [info]: %dx%d @ %.2f fps (%d frames)\n",
380 p_param->i_width, p_param->i_height,
381 (double)p_param->i_fps_num / (double)p_param->i_fps_den,
382 (int)info.dwLength );
384 return 0;
387 int get_frame_total_avis( hnd_t handle )
389 avis_input_t *h = handle;
390 AVISTREAMINFO info;
392 if( AVIStreamInfo(h->p_avi, &info, sizeof(AVISTREAMINFO)) )
393 return -1;
395 return info.dwLength;
398 int read_frame_avis( x264_picture_t *p_pic, hnd_t handle, int i_frame )
400 avis_input_t *h = handle;
402 p_pic->img.i_csp = X264_CSP_YV12;
404 if( AVIStreamRead(h->p_avi, i_frame, 1, p_pic->img.plane[0], h->width * h->height * 3 / 2, NULL, NULL ) )
405 return -1;
407 return 0;
410 int close_file_avis( hnd_t handle )
412 avis_input_t *h = handle;
413 AVIStreamRelease(h->p_avi);
414 AVIFileExit();
415 free(h);
416 return 0;
418 #endif
421 #ifdef HAVE_PTHREAD
422 typedef struct {
423 int (*p_read_frame)( x264_picture_t *p_pic, hnd_t handle, int i_frame );
424 int (*p_close_infile)( hnd_t handle );
425 hnd_t p_handle;
426 x264_picture_t pic;
427 x264_pthread_t tid;
428 int next_frame;
429 int frame_total;
430 int in_progress;
431 struct thread_input_arg_t *next_args;
432 } thread_input_t;
434 typedef struct thread_input_arg_t {
435 thread_input_t *h;
436 x264_picture_t *pic;
437 int i_frame;
438 int status;
439 } thread_input_arg_t;
441 int open_file_thread( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param )
443 thread_input_t *h = malloc(sizeof(thread_input_t));
444 x264_picture_alloc( &h->pic, X264_CSP_I420, p_param->i_width, p_param->i_height );
445 h->p_read_frame = p_read_frame;
446 h->p_close_infile = p_close_infile;
447 h->p_handle = *p_handle;
448 h->in_progress = 0;
449 h->next_frame = -1;
450 h->next_args = malloc(sizeof(thread_input_arg_t));
451 h->next_args->h = h;
452 h->next_args->status = 0;
453 h->frame_total = p_get_frame_total( h->p_handle );
455 *p_handle = (hnd_t)h;
456 return 0;
459 int get_frame_total_thread( hnd_t handle )
461 thread_input_t *h = handle;
462 return h->frame_total;
465 static void read_frame_thread_int( thread_input_arg_t *i )
467 i->status = i->h->p_read_frame( i->pic, i->h->p_handle, i->i_frame );
470 int read_frame_thread( x264_picture_t *p_pic, hnd_t handle, int i_frame )
472 thread_input_t *h = handle;
473 UNUSED void *stuff;
474 int ret = 0;
476 if( h->next_frame >= 0 )
478 x264_pthread_join( h->tid, &stuff );
479 ret |= h->next_args->status;
480 h->in_progress = 0;
483 if( h->next_frame == i_frame )
485 XCHG( x264_picture_t, *p_pic, h->pic );
487 else
489 ret |= h->p_read_frame( p_pic, h->p_handle, i_frame );
492 if( !h->frame_total || i_frame+1 < h->frame_total )
494 h->next_frame =
495 h->next_args->i_frame = i_frame+1;
496 h->next_args->pic = &h->pic;
497 x264_pthread_create( &h->tid, NULL, (void*)read_frame_thread_int, h->next_args );
498 h->in_progress = 1;
500 else
501 h->next_frame = -1;
503 return ret;
506 int close_file_thread( hnd_t handle )
508 thread_input_t *h = handle;
509 h->p_close_infile( h->p_handle );
510 x264_picture_clean( &h->pic );
511 if( h->in_progress )
512 x264_pthread_join( h->tid, NULL );
513 free( h->next_args );
514 free( h );
515 return 0;
517 #endif
520 int open_file_bsf( char *psz_filename, hnd_t *p_handle )
522 if ((*p_handle = fopen(psz_filename, "w+b")) == NULL)
523 return -1;
525 return 0;
528 int set_param_bsf( hnd_t handle, x264_param_t *p_param )
530 return 0;
533 int write_nalu_bsf( hnd_t handle, uint8_t *p_nalu, int i_size )
535 if (fwrite(p_nalu, i_size, 1, (FILE *)handle) > 0)
536 return i_size;
537 return -1;
540 int set_eop_bsf( hnd_t handle, x264_picture_t *p_picture )
542 return 0;
545 int close_file_bsf( hnd_t handle )
547 if ((handle == NULL) || (handle == stdout))
548 return 0;
550 return fclose((FILE *)handle);
553 /* -- mp4 muxing support ------------------------------------------------- */
554 #ifdef MP4_OUTPUT
556 typedef struct
558 GF_ISOFile *p_file;
559 GF_AVCConfig *p_config;
560 GF_ISOSample *p_sample;
561 int i_track;
562 uint32_t i_descidx;
563 int i_time_inc;
564 int i_time_res;
565 int i_numframe;
566 int i_init_delay;
567 uint8_t b_sps;
568 uint8_t b_pps;
569 } mp4_t;
572 static void recompute_bitrate_mp4(GF_ISOFile *p_file, int i_track)
574 u32 i, count, di, timescale, time_wnd, rate;
575 u64 offset;
576 Double br;
577 GF_ESD *esd;
579 esd = gf_isom_get_esd(p_file, i_track, 1);
580 if (!esd) return;
582 esd->decoderConfig->avgBitrate = 0;
583 esd->decoderConfig->maxBitrate = 0;
584 rate = time_wnd = 0;
586 timescale = gf_isom_get_media_timescale(p_file, i_track);
587 count = gf_isom_get_sample_count(p_file, i_track);
588 for (i=0; i<count; i++) {
589 GF_ISOSample *samp = gf_isom_get_sample_info(p_file, i_track, i+1, &di, &offset);
591 if (samp->dataLength>esd->decoderConfig->bufferSizeDB) esd->decoderConfig->bufferSizeDB = samp->dataLength;
593 if (esd->decoderConfig->bufferSizeDB < samp->dataLength) esd->decoderConfig->bufferSizeDB = samp->dataLength;
594 esd->decoderConfig->avgBitrate += samp->dataLength;
595 rate += samp->dataLength;
596 if (samp->DTS > time_wnd + timescale) {
597 if (rate > esd->decoderConfig->maxBitrate) esd->decoderConfig->maxBitrate = rate;
598 time_wnd = samp->DTS;
599 rate = 0;
602 gf_isom_sample_del(&samp);
605 br = (Double) (s64) gf_isom_get_media_duration(p_file, i_track);
606 br /= timescale;
607 esd->decoderConfig->avgBitrate = (u32) (esd->decoderConfig->avgBitrate / br);
608 /*move to bps*/
609 esd->decoderConfig->avgBitrate *= 8;
610 esd->decoderConfig->maxBitrate *= 8;
612 gf_isom_change_mpeg4_description(p_file, i_track, 1, esd);
613 gf_odf_desc_del((GF_Descriptor *) esd);
617 int close_file_mp4( hnd_t handle )
619 mp4_t *p_mp4 = (mp4_t *)handle;
621 if (p_mp4 == NULL)
622 return 0;
624 if (p_mp4->p_config)
625 gf_odf_avc_cfg_del(p_mp4->p_config);
627 if (p_mp4->p_sample)
629 if (p_mp4->p_sample->data)
630 free(p_mp4->p_sample->data);
632 gf_isom_sample_del(&p_mp4->p_sample);
635 if (p_mp4->p_file)
637 recompute_bitrate_mp4(p_mp4->p_file, p_mp4->i_track);
638 gf_isom_set_pl_indication(p_mp4->p_file, GF_ISOM_PL_VISUAL, 0x15);
639 gf_isom_set_storage_mode(p_mp4->p_file, GF_ISOM_STORE_FLAT);
640 gf_isom_close(p_mp4->p_file);
643 free(p_mp4);
645 return 0;
648 int open_file_mp4( char *psz_filename, hnd_t *p_handle )
650 mp4_t *p_mp4;
652 *p_handle = NULL;
654 if ((p_mp4 = (mp4_t *)malloc(sizeof(mp4_t))) == NULL)
655 return -1;
657 memset(p_mp4, 0, sizeof(mp4_t));
658 p_mp4->p_file = gf_isom_open(psz_filename, GF_ISOM_OPEN_WRITE, NULL);
660 if ((p_mp4->p_sample = gf_isom_sample_new()) == NULL)
662 close_file_mp4( p_mp4 );
663 return -1;
666 gf_isom_set_brand_info(p_mp4->p_file, GF_ISOM_BRAND_AVC1, 0);
668 *p_handle = p_mp4;
670 return 0;
674 int set_param_mp4( hnd_t handle, x264_param_t *p_param )
676 mp4_t *p_mp4 = (mp4_t *)handle;
678 p_mp4->i_track = gf_isom_new_track(p_mp4->p_file, 0, GF_ISOM_MEDIA_VISUAL,
679 p_param->i_fps_num);
681 p_mp4->p_config = gf_odf_avc_cfg_new();
682 gf_isom_avc_config_new(p_mp4->p_file, p_mp4->i_track, p_mp4->p_config,
683 NULL, NULL, &p_mp4->i_descidx);
685 gf_isom_set_track_enabled(p_mp4->p_file, p_mp4->i_track, 1);
687 gf_isom_set_visual_info(p_mp4->p_file, p_mp4->i_track, p_mp4->i_descidx,
688 p_param->i_width, p_param->i_height);
690 if( p_param->vui.i_sar_width && p_param->vui.i_sar_height )
692 uint64_t dw = p_param->i_width << 16;
693 uint64_t dh = p_param->i_height << 16;
694 double sar = (double)p_param->vui.i_sar_width / p_param->vui.i_sar_height;
695 if( sar > 1.0 )
696 dw *= sar ;
697 else
698 dh /= sar;
699 gf_isom_set_track_layout_info( p_mp4->p_file, p_mp4->i_track, dw, dh, 0, 0, 0 );
702 p_mp4->p_sample->data = (char *)malloc(p_param->i_width * p_param->i_height * 3 / 2);
703 if (p_mp4->p_sample->data == NULL)
704 return -1;
706 p_mp4->i_time_res = p_param->i_fps_num;
707 p_mp4->i_time_inc = p_param->i_fps_den;
708 p_mp4->i_init_delay = p_param->i_bframe ? (p_param->b_bframe_pyramid ? 2 : 1) : 0;
709 p_mp4->i_init_delay *= p_mp4->i_time_inc;
710 fprintf(stderr, "mp4 [info]: initial delay %d (scale %d)\n",
711 p_mp4->i_init_delay, p_mp4->i_time_res);
713 return 0;
717 int write_nalu_mp4( hnd_t handle, uint8_t *p_nalu, int i_size )
719 mp4_t *p_mp4 = (mp4_t *)handle;
720 GF_AVCConfigSlot *p_slot;
721 uint8_t type = p_nalu[4] & 0x1f;
722 int psize;
724 switch(type)
726 // sps
727 case 0x07:
728 if (!p_mp4->b_sps)
730 p_mp4->p_config->configurationVersion = 1;
731 p_mp4->p_config->AVCProfileIndication = p_nalu[5];
732 p_mp4->p_config->profile_compatibility = p_nalu[6];
733 p_mp4->p_config->AVCLevelIndication = p_nalu[7];
734 p_slot = (GF_AVCConfigSlot *)malloc(sizeof(GF_AVCConfigSlot));
735 p_slot->size = i_size - 4;
736 p_slot->data = (char *)malloc(p_slot->size);
737 memcpy(p_slot->data, p_nalu + 4, i_size - 4);
738 gf_list_add(p_mp4->p_config->sequenceParameterSets, p_slot);
739 p_slot = NULL;
740 p_mp4->b_sps = 1;
742 break;
744 // pps
745 case 0x08:
746 if (!p_mp4->b_pps)
748 p_slot = (GF_AVCConfigSlot *)malloc(sizeof(GF_AVCConfigSlot));
749 p_slot->size = i_size - 4;
750 p_slot->data = (char *)malloc(p_slot->size);
751 memcpy(p_slot->data, p_nalu + 4, i_size - 4);
752 gf_list_add(p_mp4->p_config->pictureParameterSets, p_slot);
753 p_slot = NULL;
754 p_mp4->b_pps = 1;
755 if (p_mp4->b_sps)
756 gf_isom_avc_config_update(p_mp4->p_file, p_mp4->i_track, 1, p_mp4->p_config);
758 break;
760 // slice, sei
761 case 0x1:
762 case 0x5:
763 case 0x6:
764 psize = i_size - 4 ;
765 memcpy(p_mp4->p_sample->data + p_mp4->p_sample->dataLength, p_nalu, i_size);
766 p_mp4->p_sample->data[p_mp4->p_sample->dataLength + 0] = (psize >> 24) & 0xff;
767 p_mp4->p_sample->data[p_mp4->p_sample->dataLength + 1] = (psize >> 16) & 0xff;
768 p_mp4->p_sample->data[p_mp4->p_sample->dataLength + 2] = (psize >> 8) & 0xff;
769 p_mp4->p_sample->data[p_mp4->p_sample->dataLength + 3] = (psize >> 0) & 0xff;
770 p_mp4->p_sample->dataLength += i_size;
771 break;
774 return i_size;
777 int set_eop_mp4( hnd_t handle, x264_picture_t *p_picture )
779 mp4_t *p_mp4 = (mp4_t *)handle;
780 uint64_t dts = (uint64_t)p_mp4->i_numframe * p_mp4->i_time_inc;
781 uint64_t pts = (uint64_t)p_picture->i_pts;
782 int32_t offset = p_mp4->i_init_delay + pts - dts;
784 p_mp4->p_sample->IsRAP = p_picture->i_type == X264_TYPE_IDR ? 1 : 0;
785 p_mp4->p_sample->DTS = dts;
786 p_mp4->p_sample->CTS_Offset = offset;
787 gf_isom_add_sample(p_mp4->p_file, p_mp4->i_track, p_mp4->i_descidx, p_mp4->p_sample);
789 p_mp4->p_sample->dataLength = 0;
790 p_mp4->i_numframe++;
792 return 0;
795 #endif
798 /* -- mkv muxing support ------------------------------------------------- */
799 typedef struct
801 mk_Writer *w;
803 uint8_t *sps, *pps;
804 int sps_len, pps_len;
806 int width, height, d_width, d_height;
808 int64_t frame_duration;
809 int fps_num;
811 int b_header_written;
812 char b_writing_frame;
813 } mkv_t;
815 static int write_header_mkv( mkv_t *p_mkv )
817 int ret;
818 uint8_t *avcC;
819 int avcC_len;
821 if( p_mkv->sps == NULL || p_mkv->pps == NULL ||
822 p_mkv->width == 0 || p_mkv->height == 0 ||
823 p_mkv->d_width == 0 || p_mkv->d_height == 0)
824 return -1;
826 avcC_len = 5 + 1 + 2 + p_mkv->sps_len + 1 + 2 + p_mkv->pps_len;
827 avcC = malloc(avcC_len);
828 if (avcC == NULL)
829 return -1;
831 avcC[0] = 1;
832 avcC[1] = p_mkv->sps[1];
833 avcC[2] = p_mkv->sps[2];
834 avcC[3] = p_mkv->sps[3];
835 avcC[4] = 0xff; // nalu size length is four bytes
836 avcC[5] = 0xe1; // one sps
838 avcC[6] = p_mkv->sps_len >> 8;
839 avcC[7] = p_mkv->sps_len;
841 memcpy(avcC+8, p_mkv->sps, p_mkv->sps_len);
843 avcC[8+p_mkv->sps_len] = 1; // one pps
844 avcC[9+p_mkv->sps_len] = p_mkv->pps_len >> 8;
845 avcC[10+p_mkv->sps_len] = p_mkv->pps_len;
847 memcpy( avcC+11+p_mkv->sps_len, p_mkv->pps, p_mkv->pps_len );
849 ret = mk_writeHeader( p_mkv->w, "x264", "V_MPEG4/ISO/AVC",
850 avcC, avcC_len, p_mkv->frame_duration, 50000,
851 p_mkv->width, p_mkv->height,
852 p_mkv->d_width, p_mkv->d_height );
854 free( avcC );
856 p_mkv->b_header_written = 1;
858 return ret;
861 int open_file_mkv( char *psz_filename, hnd_t *p_handle )
863 mkv_t *p_mkv;
865 *p_handle = NULL;
867 p_mkv = malloc(sizeof(*p_mkv));
868 if (p_mkv == NULL)
869 return -1;
871 memset(p_mkv, 0, sizeof(*p_mkv));
873 p_mkv->w = mk_createWriter(psz_filename);
874 if (p_mkv->w == NULL)
876 free(p_mkv);
877 return -1;
880 *p_handle = p_mkv;
882 return 0;
885 int set_param_mkv( hnd_t handle, x264_param_t *p_param )
887 mkv_t *p_mkv = handle;
888 int64_t dw, dh;
890 if( p_param->i_fps_num > 0 )
892 p_mkv->frame_duration = (int64_t)p_param->i_fps_den *
893 (int64_t)1000000000 / p_param->i_fps_num;
894 p_mkv->fps_num = p_param->i_fps_num;
896 else
898 p_mkv->frame_duration = 0;
899 p_mkv->fps_num = 1;
902 p_mkv->width = p_param->i_width;
903 p_mkv->height = p_param->i_height;
905 if( p_param->vui.i_sar_width && p_param->vui.i_sar_height )
907 dw = (int64_t)p_param->i_width * p_param->vui.i_sar_width;
908 dh = (int64_t)p_param->i_height * p_param->vui.i_sar_height;
910 else
912 dw = p_param->i_width;
913 dh = p_param->i_height;
916 if( dw > 0 && dh > 0 )
918 int64_t x = gcd( dw, dh );
919 dw /= x;
920 dh /= x;
923 p_mkv->d_width = (int)dw;
924 p_mkv->d_height = (int)dh;
926 return 0;
929 int write_nalu_mkv( hnd_t handle, uint8_t *p_nalu, int i_size )
931 mkv_t *p_mkv = handle;
932 uint8_t type = p_nalu[4] & 0x1f;
933 uint8_t dsize[4];
934 int psize;
936 switch( type )
938 // sps
939 case 0x07:
940 if( !p_mkv->sps )
942 p_mkv->sps = malloc(i_size - 4);
943 if (p_mkv->sps == NULL)
944 return -1;
945 p_mkv->sps_len = i_size - 4;
946 memcpy(p_mkv->sps, p_nalu + 4, i_size - 4);
948 break;
950 // pps
951 case 0x08:
952 if( !p_mkv->pps )
954 p_mkv->pps = malloc(i_size - 4);
955 if (p_mkv->pps == NULL)
956 return -1;
957 p_mkv->pps_len = i_size - 4;
958 memcpy(p_mkv->pps, p_nalu + 4, i_size - 4);
960 break;
962 // slice, sei
963 case 0x1:
964 case 0x5:
965 case 0x6:
966 if( !p_mkv->b_writing_frame )
968 if( mk_startFrame(p_mkv->w) < 0 )
969 return -1;
970 p_mkv->b_writing_frame = 1;
972 psize = i_size - 4 ;
973 dsize[0] = psize >> 24;
974 dsize[1] = psize >> 16;
975 dsize[2] = psize >> 8;
976 dsize[3] = psize;
977 if( mk_addFrameData(p_mkv->w, dsize, 4) < 0 ||
978 mk_addFrameData(p_mkv->w, p_nalu + 4, i_size - 4) < 0 )
979 return -1;
980 break;
982 default:
983 break;
986 if( !p_mkv->b_header_written && p_mkv->pps && p_mkv->sps &&
987 write_header_mkv(p_mkv) < 0 )
988 return -1;
990 return i_size;
993 int set_eop_mkv( hnd_t handle, x264_picture_t *p_picture )
995 mkv_t *p_mkv = handle;
996 int64_t i_stamp = (int64_t)(p_picture->i_pts * 1e9 / p_mkv->fps_num);
998 p_mkv->b_writing_frame = 0;
1000 return mk_setFrameFlags( p_mkv->w, i_stamp,
1001 p_picture->i_type == X264_TYPE_IDR );
1004 int close_file_mkv( hnd_t handle )
1006 mkv_t *p_mkv = handle;
1007 int ret;
1009 if( p_mkv->sps )
1010 free( p_mkv->sps );
1011 if( p_mkv->pps )
1012 free( p_mkv->pps );
1014 ret = mk_close(p_mkv->w);
1016 free( p_mkv );
1018 return ret;