1 /*****************************************************************************
2 * mpegvideo.c: parse and packetize an MPEG1/2 video stream
3 *****************************************************************************
4 * Copyright (C) 2001-2006 the VideoLAN team
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8 * Eric Petit <titer@videolan.org>
9 * Gildas Bazin <gbazin@videolan.org>
10 * Jean-Paul Saman <jpsaman #_at_# m2x dot nl>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25 *****************************************************************************/
27 /*****************************************************************************
28 * Problem with this implementation:
30 * Although we should time-stamp each picture with a PTS, this isn't possible
31 * with the current implementation.
32 * The problem comes from the fact that for non-low-delay streams we can't
33 * calculate the PTS of pictures used as backward reference. Even the temporal
34 * reference number doesn't help here because all the pictures don't
35 * necessarily have the same duration (eg. 3:2 pulldown).
37 * However this doesn't really matter as far as the MPEG muxers are concerned
38 * because they allow having empty PTS fields. --gibalou
39 *****************************************************************************/
41 /*****************************************************************************
43 *****************************************************************************/
49 #include <vlc_common.h>
50 #include <vlc_plugin.h>
51 #include <vlc_block.h>
52 #include <vlc_codec.h>
53 #include <vlc_block_helper.h>
54 #include "../codec/cc.h"
56 #define SYNC_INTRAFRAME_TEXT N_("Sync on Intra Frame")
57 #define SYNC_INTRAFRAME_LONGTEXT N_("Normally the packetizer would " \
58 "sync on the next full frame. This flags instructs the packetizer " \
59 "to sync on the first Intra Frame found.")
61 /*****************************************************************************
63 *****************************************************************************/
64 static int Open ( vlc_object_t * );
65 static void Close( vlc_object_t * );
68 set_category( CAT_SOUT );
69 set_subcategory( SUBCAT_SOUT_PACKETIZER );
70 set_description( N_("MPEG-I/II video packetizer") );
71 set_capability( "packetizer", 50 );
72 set_callbacks( Open, Close );
74 add_bool( "packetizer-mpegvideo-sync-iframe", 0, NULL, SYNC_INTRAFRAME_TEXT,
75 SYNC_INTRAFRAME_LONGTEXT, true );
78 /*****************************************************************************
80 *****************************************************************************/
81 static block_t *Packetize( decoder_t *, block_t ** );
82 static block_t *ParseMPEGBlock( decoder_t *, block_t * );
83 static block_t *GetCc( decoder_t *p_dec, bool pb_present[4] );
90 block_bytestream_t bytestream;
93 uint8_t p_startcode[3];
95 /* Sequence header and extension */
99 /* Current frame being built */
107 /* Sequence properties */
109 int i_frame_rate_base;
110 bool b_seq_progressive;
112 int i_aspect_ratio_info;
115 /* Picture properties */
118 int i_picture_structure;
119 int i_top_field_first;
120 int i_repeat_first_field;
121 int i_progressive_frame;
123 mtime_t i_interpolated_dts;
124 mtime_t i_last_ref_pts;
127 /* Number of pictures since last sequence header */
131 bool b_sync_on_intra_frame;
132 bool b_discontinuity;
147 /*****************************************************************************
149 *****************************************************************************/
150 static int Open( vlc_object_t *p_this )
152 decoder_t *p_dec = (decoder_t*)p_this;
153 decoder_sys_t *p_sys;
155 if( p_dec->fmt_in.i_codec != VLC_FOURCC( 'm', 'p', 'g', '1' ) &&
156 p_dec->fmt_in.i_codec != VLC_FOURCC( 'm', 'p', 'g', '2' ) &&
157 p_dec->fmt_in.i_codec != VLC_FOURCC( 'm', 'p', 'g', 'v' ) )
162 es_format_Init( &p_dec->fmt_out, VIDEO_ES, VLC_FOURCC('m','p','g','v') );
163 p_dec->pf_packetize = Packetize;
164 p_dec->pf_get_cc = GetCc;
166 p_dec->p_sys = p_sys = malloc( sizeof( decoder_sys_t ) );
169 memset( p_dec->p_sys, 0, sizeof( decoder_sys_t ) );
172 p_sys->i_state = STATE_NOSYNC;
173 p_sys->bytestream = block_BytestreamInit();
174 p_sys->p_startcode[0] = 0;
175 p_sys->p_startcode[1] = 0;
176 p_sys->p_startcode[2] = 1;
181 p_sys->p_frame = NULL;
182 p_sys->pp_last = &p_sys->p_frame;
183 p_sys->b_frame_slice = false;
185 p_sys->i_dts = p_sys->i_pts = 0;
187 p_sys->i_frame_rate = 1;
188 p_sys->i_frame_rate_base = 1;
189 p_sys->b_seq_progressive = true;
190 p_sys->b_low_delay = true;
191 p_sys->i_seq_old = 0;
193 p_sys->i_temporal_ref = 0;
194 p_sys->i_picture_type = 0;
195 p_sys->i_picture_structure = 0x03; /* frame */
196 p_sys->i_top_field_first = 0;
197 p_sys->i_repeat_first_field = 0;
198 p_sys->i_progressive_frame = 0;
201 p_sys->i_interpolated_dts = 0;
202 p_sys->i_last_ref_pts = 0;
203 p_sys->b_second_field = 0;
205 p_sys->b_discontinuity = false;
206 p_sys->b_sync_on_intra_frame = var_CreateGetBool( p_dec, "packetizer-mpegvideo-sync-iframe" );
207 if( p_sys->b_sync_on_intra_frame )
208 msg_Dbg( p_dec, "syncing on intra frame now" );
210 p_sys->b_cc_reset = false;
213 p_sys->i_cc_flags = 0;
214 cc_Init( &p_sys->cc );
219 /*****************************************************************************
221 *****************************************************************************/
222 static void Close( vlc_object_t *p_this )
224 decoder_t *p_dec = (decoder_t*)p_this;
225 decoder_sys_t *p_sys = p_dec->p_sys;
227 block_BytestreamRelease( &p_sys->bytestream );
231 block_Release( p_sys->p_seq );
235 block_Release( p_sys->p_ext );
239 block_ChainRelease( p_sys->p_frame );
242 var_Destroy( p_dec, "packetizer-mpegvideo-sync-iframe" );
247 /*****************************************************************************
249 *****************************************************************************/
250 static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
252 decoder_sys_t *p_sys = p_dec->p_sys;
255 if( pp_block == NULL || *pp_block == NULL )
260 if( (*pp_block)->i_flags&(BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) )
262 if( (*pp_block)->i_flags&BLOCK_FLAG_CORRUPTED )
264 p_sys->i_state = STATE_NOSYNC;
265 block_BytestreamFlush( &p_sys->bytestream );
267 p_sys->b_discontinuity = true;
269 block_ChainRelease( p_sys->p_frame );
270 p_sys->p_frame = NULL;
271 p_sys->pp_last = &p_sys->p_frame;
272 p_sys->b_frame_slice = false;
274 // p_sys->i_interpolated_dts =
275 // p_sys->i_last_ref_pts = 0;
277 block_Release( *pp_block );
282 block_BytestreamPush( &p_sys->bytestream, *pp_block );
286 switch( p_sys->i_state )
290 if( block_FindStartcodeFromOffset( &p_sys->bytestream,
291 &p_sys->i_offset, p_sys->p_startcode, 3 ) == VLC_SUCCESS )
293 p_sys->i_state = STATE_NEXT_SYNC;
296 if( p_sys->i_offset )
298 block_SkipBytes( &p_sys->bytestream, p_sys->i_offset );
300 block_BytestreamFlush( &p_sys->bytestream );
303 if( p_sys->i_state != STATE_NEXT_SYNC )
309 p_sys->i_offset = 1; /* To find next startcode */
311 case STATE_NEXT_SYNC:
312 /* TODO: If p_block == NULL, flush the buffer without checking the
315 /* Find the next startcode */
316 if( block_FindStartcodeFromOffset( &p_sys->bytestream,
317 &p_sys->i_offset, p_sys->p_startcode, 3 ) != VLC_SUCCESS )
323 /* Get the new fragment and set the pts/dts */
324 p_pic = block_New( p_dec, p_sys->i_offset );
325 block_BytestreamFlush( &p_sys->bytestream );
326 p_pic->i_pts = p_sys->bytestream.p_block->i_pts;
327 p_pic->i_dts = p_sys->bytestream.p_block->i_dts;
329 block_GetBytes( &p_sys->bytestream, p_pic->p_buffer,
332 /* don't reuse the same timestamps several times */
333 if( p_pic->i_buffer >= 4 && p_pic->p_buffer[3] == 0x00 )
335 /* We have a picture start code */
336 p_sys->bytestream.p_block->i_pts = 0;
337 p_sys->bytestream.p_block->i_dts = 0;
342 /* Get picture if any */
343 if( !( p_pic = ParseMPEGBlock( p_dec, p_pic ) ) )
345 p_sys->i_state = STATE_NOSYNC;
349 /* If a discontinuity has been encountered, then wait till
350 * the next Intra frame before continuing with packetizing */
351 if( p_sys->b_discontinuity &&
352 p_sys->b_sync_on_intra_frame )
354 if( p_pic->i_flags & BLOCK_FLAG_TYPE_I )
356 msg_Dbg( p_dec, "synced on intra frame" );
357 p_sys->b_discontinuity = false;
358 p_pic->i_flags |= BLOCK_FLAG_DISCONTINUITY;
362 msg_Dbg( p_dec, "waiting on intra frame" );
363 p_sys->i_state = STATE_NOSYNC;
364 block_Release( p_pic );
369 /* We've just started the stream, wait for the first PTS.
370 * We discard here so we can still get the sequence header. */
371 if( p_sys->i_dts <= 0 && p_sys->i_pts <= 0 &&
372 p_sys->i_interpolated_dts <= 0 )
374 msg_Dbg( p_dec, "need a starting pts/dts" );
375 p_sys->i_state = STATE_NOSYNC;
376 block_Release( p_pic );
380 /* When starting the stream we can have the first frame with
381 * a null DTS (i_interpolated_pts is initialized to 0) */
382 if( !p_pic->i_dts ) p_pic->i_dts = p_pic->i_pts;
384 /* So p_block doesn't get re-added several times */
385 *pp_block = block_BytestreamPop( &p_sys->bytestream );
387 p_sys->i_state = STATE_NOSYNC;
394 /*****************************************************************************
396 *****************************************************************************/
397 static block_t *GetCc( decoder_t *p_dec, bool pb_present[4] )
399 decoder_sys_t *p_sys = p_dec->p_sys;
403 for( i = 0; i < 4; i++ )
404 pb_present[i] = p_sys->cc.pb_present[i];
406 if( p_sys->cc.i_data <= 0 )
409 p_cc = block_New( p_dec, p_sys->cc.i_data);
412 memcpy( p_cc->p_buffer, p_sys->cc.p_data, p_sys->cc.i_data );
414 p_cc->i_pts = p_sys->cc.b_reorder ? p_sys->i_cc_pts : p_sys->i_cc_dts;
415 p_cc->i_flags = ( p_sys->cc.b_reorder ? p_sys->i_cc_flags : BLOCK_FLAG_TYPE_P ) & ( BLOCK_FLAG_TYPE_I|BLOCK_FLAG_TYPE_P|BLOCK_FLAG_TYPE_B);
417 cc_Flush( &p_sys->cc );
421 /*****************************************************************************
422 * ParseMPEGBlock: Re-assemble fragments into a block containing a picture
423 *****************************************************************************/
424 static block_t *ParseMPEGBlock( decoder_t *p_dec, block_t *p_frag )
426 decoder_sys_t *p_sys = p_dec->p_sys;
427 block_t *p_pic = NULL;
430 * Check if previous picture is finished
432 if( ( p_sys->b_frame_slice &&
433 (p_frag->p_buffer[3] == 0x00 || p_frag->p_buffer[3] > 0xaf) ) &&
434 p_sys->p_seq == NULL )
436 /* We have a picture but without a sequence header we can't
438 msg_Dbg( p_dec, "waiting for sequence start" );
439 if( p_sys->p_frame ) block_ChainRelease( p_sys->p_frame );
440 p_sys->p_frame = NULL;
441 p_sys->pp_last = &p_sys->p_frame;
442 p_sys->b_frame_slice = false;
445 else if( p_sys->b_frame_slice &&
446 (p_frag->p_buffer[3] == 0x00 || p_frag->p_buffer[3] > 0xaf) )
448 const bool b_eos = p_frag->p_buffer[3] == 0xb7;
454 block_ChainLastAppend( &p_sys->pp_last, p_frag );
458 p_pic = block_ChainGather( p_sys->p_frame );
461 p_pic->i_flags |= BLOCK_FLAG_END_OF_SEQUENCE;
463 i_duration = (mtime_t)( 1000000 * p_sys->i_frame_rate_base /
464 p_sys->i_frame_rate );
466 if( !p_sys->b_seq_progressive && p_sys->i_picture_structure != 0x03 )
471 if( p_sys->b_seq_progressive )
473 if( p_sys->i_top_field_first == 0 &&
474 p_sys->i_repeat_first_field == 1 )
478 else if( p_sys->i_top_field_first == 1 &&
479 p_sys->i_repeat_first_field == 1 )
486 if( p_sys->i_picture_structure == 0x03 )
488 if( p_sys->i_progressive_frame && p_sys->i_repeat_first_field )
490 i_duration += i_duration / 2;
495 if( p_sys->b_low_delay || p_sys->i_picture_type == 0x03 )
497 /* Trivial case (DTS == PTS) */
498 /* Correct interpolated dts when we receive a new pts/dts */
499 if( p_sys->i_pts > 0 ) p_sys->i_interpolated_dts = p_sys->i_pts;
500 if( p_sys->i_dts > 0 ) p_sys->i_interpolated_dts = p_sys->i_dts;
504 /* Correct interpolated dts when we receive a new pts/dts */
505 if( p_sys->i_last_ref_pts > 0 && !p_sys->b_second_field )
506 p_sys->i_interpolated_dts = p_sys->i_last_ref_pts;
507 if( p_sys->i_dts > 0 ) p_sys->i_interpolated_dts = p_sys->i_dts;
509 if( !p_sys->b_second_field )
510 p_sys->i_last_ref_pts = p_sys->i_pts;
513 p_pic->i_dts = p_sys->i_interpolated_dts;
514 p_sys->i_interpolated_dts += i_duration;
516 /* Set PTS only if we have a B frame or if it comes from the stream */
517 if( p_sys->i_pts > 0 )
519 p_pic->i_pts = p_sys->i_pts;
521 else if( p_sys->i_picture_type == 0x03 )
523 p_pic->i_pts = p_pic->i_dts;
530 switch ( p_sys->i_picture_type )
533 p_pic->i_flags |= BLOCK_FLAG_TYPE_I;
536 p_pic->i_flags |= BLOCK_FLAG_TYPE_P;
539 p_pic->i_flags |= BLOCK_FLAG_TYPE_B;
543 p_pic->i_length = p_sys->i_interpolated_dts - p_pic->i_dts;
546 msg_Dbg( p_dec, "pic: type=%d dts=%"PRId64" pts-dts=%"PRId64,
547 p_sys->i_picture_type, p_pic->i_dts, p_pic->i_pts - p_pic->i_dts);
551 p_sys->p_frame = NULL;
552 p_sys->pp_last = &p_sys->p_frame;
553 p_sys->b_frame_slice = false;
555 if( p_sys->i_picture_structure != 0x03 )
557 p_sys->b_second_field = !p_sys->b_second_field;
561 p_sys->b_second_field = 0;
565 p_sys->b_cc_reset = true;
566 p_sys->i_cc_pts = p_pic->i_pts;
567 p_sys->i_cc_dts = p_pic->i_dts;
568 p_sys->i_cc_flags = p_pic->i_flags;
571 if( !p_pic && p_sys->b_cc_reset )
573 p_sys->b_cc_reset = false;
574 cc_Flush( &p_sys->cc );
580 * Check info of current fragment
582 if( p_frag->p_buffer[3] == 0xb8 )
584 /* Group start code */
586 p_sys->i_seq_old > p_sys->i_frame_rate/p_sys->i_frame_rate_base )
588 /* Usefull for mpeg1: repeat sequence header every second */
589 block_ChainLastAppend( &p_sys->pp_last, block_Duplicate( p_sys->p_seq ) );
592 block_ChainLastAppend( &p_sys->pp_last, block_Duplicate( p_sys->p_ext ) );
595 p_sys->i_seq_old = 0;
598 else if( p_frag->p_buffer[3] == 0xb3 && p_frag->i_buffer >= 8 )
600 /* Sequence header code */
601 static const int code_to_frame_rate[16][2] =
603 { 1, 1 }, /* invalid */
604 { 24000, 1001 }, { 24, 1 }, { 25, 1 }, { 30000, 1001 },
605 { 30, 1 }, { 50, 1 }, { 60000, 1001 }, { 60, 1 },
606 /* Unofficial 15fps from Xing*/
608 /* Unofficial economy rates from libmpeg3 */
609 { 5, 1001 }, { 10, 1001 }, { 12, 1001 }, { 15, 1001 },
610 { 1, 1 }, { 1, 1 } /* invalid */
613 if( p_sys->p_seq ) block_Release( p_sys->p_seq );
614 if( p_sys->p_ext ) block_Release( p_sys->p_ext );
616 p_sys->p_seq = block_Duplicate( p_frag );
617 p_sys->i_seq_old = 0;
620 p_dec->fmt_out.video.i_width =
621 ( p_frag->p_buffer[4] << 4)|(p_frag->p_buffer[5] >> 4 );
622 p_dec->fmt_out.video.i_height =
623 ( (p_frag->p_buffer[5]&0x0f) << 8 )|p_frag->p_buffer[6];
624 p_sys->i_aspect_ratio_info = p_frag->p_buffer[7] >> 4;
626 /* TODO: MPEG1 aspect ratio */
628 p_sys->i_frame_rate = code_to_frame_rate[p_frag->p_buffer[7]&0x0f][0];
629 p_sys->i_frame_rate_base =
630 code_to_frame_rate[p_frag->p_buffer[7]&0x0f][1];
632 p_dec->fmt_out.video.i_frame_rate = p_sys->i_frame_rate;
633 p_dec->fmt_out.video.i_frame_rate_base = p_sys->i_frame_rate_base;
635 p_sys->b_seq_progressive = true;
636 p_sys->b_low_delay = true;
638 if ( !p_sys->b_inited )
640 msg_Dbg( p_dec, "size %dx%d fps=%.3f",
641 p_dec->fmt_out.video.i_width, p_dec->fmt_out.video.i_height,
642 p_sys->i_frame_rate / (float)p_sys->i_frame_rate_base );
646 else if( p_frag->p_buffer[3] == 0xb5 )
648 int i_type = p_frag->p_buffer[4] >> 4;
650 /* Extension start code */
654 static const int mpeg2_aspect[16][2] =
656 {0,1}, {1,1}, {4,3}, {16,9}, {221,100},
657 {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1},
662 /* sequence extension */
663 if( p_sys->p_ext) block_Release( p_sys->p_ext );
664 p_sys->p_ext = block_Duplicate( p_frag );
666 if( p_frag->i_buffer >= 10 )
668 p_sys->b_seq_progressive =
669 p_frag->p_buffer[5]&0x08 ? true : false;
671 p_frag->p_buffer[9]&0x80 ? true : false;
674 /* Do not set aspect ratio : in case we're transcoding,
675 * transcode will take our fmt_out as a fmt_in to libmpeg2.
676 * libmpeg2.c will then believe that the user has requested
677 * a specific aspect ratio, which she hasn't. Thus in case
678 * of aspect ratio change, we're screwed. --Meuuh
681 p_dec->fmt_out.video.i_aspect =
682 mpeg2_aspect[p_sys->i_aspect_ratio_info][0] *
684 mpeg2_aspect[p_sys->i_aspect_ratio_info][1];
688 else if( i_type == 0x08 )
690 /* picture extension */
691 p_sys->i_picture_structure = p_frag->p_buffer[6]&0x03;
692 p_sys->i_top_field_first = p_frag->p_buffer[7] >> 7;
693 p_sys->i_repeat_first_field= (p_frag->p_buffer[7]>>1)&0x01;
694 p_sys->i_progressive_frame = p_frag->p_buffer[8] >> 7;
697 else if( p_frag->p_buffer[3] == 0xb2 && p_frag->i_buffer > 4 )
699 cc_Extract( &p_sys->cc, &p_frag->p_buffer[4], p_frag->i_buffer - 4 );
701 else if( p_frag->p_buffer[3] == 0x00 )
703 /* Picture start code */
706 if( p_frag->i_buffer >= 6 )
708 p_sys->i_temporal_ref =
709 ( p_frag->p_buffer[4] << 2 )|(p_frag->p_buffer[5] >> 6);
710 p_sys->i_picture_type = ( p_frag->p_buffer[5] >> 3 ) & 0x03;
713 p_sys->i_dts = p_frag->i_dts;
714 p_sys->i_pts = p_frag->i_pts;
716 else if( p_frag->p_buffer[3] >= 0x01 && p_frag->p_buffer[3] <= 0xaf )
718 /* Slice start code */
719 p_sys->b_frame_slice = true;
722 /* Append the block */
723 block_ChainLastAppend( &p_sys->pp_last, p_frag );