]> git.sesse.net Git - vlc/blob - modules/packetizer/mpegvideo.c
* modules/packetizer/mpeg4audio.c, modules/packetizer/mpegvideo.c: compilation fix.
[vlc] / modules / packetizer / mpegvideo.c
1 /*****************************************************************************
2  * mpegvideo.c: parse and packetize an MPEG1/2 video stream
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 VideoLAN
5  * $Id: mpegvideo.c,v 1.30 2004/02/25 18:43:24 gbazin Exp $
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Eric Petit <titer@videolan.org>
9  *          Gildas Bazin <gbazin@netcourrier.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Problem with this implementation:
28  *
29  * Although we should time-stamp each picture with a PTS, this isn't possible
30  * with the current implementation.
31  * The problem comes from the fact that for non-low-delay streams we can't
32  * calculate the PTS of pictures used as backward reference. Even the temporal
33  * reference number doesn't help here because all the pictures don't
34  * necessarily have the same duration (eg. 3:2 pulldown).
35  *
36  * However this doesn't really matter as far as the MPEG muxers are concerned
37  * because they allow having empty PTS fields. --gibalou
38  *****************************************************************************/
39
40 /*****************************************************************************
41  * Preamble
42  *****************************************************************************/
43 #include <stdlib.h>                                      /* malloc(), free() */
44
45 #include <vlc/vlc.h>
46 #include <vlc/decoder.h>
47 #include <vlc/input.h>
48
49 #include "vlc_block_helper.h"
50
51 /*****************************************************************************
52  * Module descriptor
53  *****************************************************************************/
54 static int  Open ( vlc_object_t * );
55 static void Close( vlc_object_t * );
56
57 vlc_module_begin();
58     set_description( _("MPEG-I/II video packetizer") );
59     set_capability( "packetizer", 50 );
60     set_callbacks( Open, Close );
61 vlc_module_end();
62
63 /*****************************************************************************
64  * Local prototypes
65  *****************************************************************************/
66 static block_t *Packetize( decoder_t *, block_t ** );
67 static block_t *ParseMPEGBlock( decoder_t *, block_t * );
68
69 struct decoder_sys_t
70 {
71     /*
72      * Input properties
73      */
74     block_bytestream_t bytestream;
75     int i_state;
76     int i_offset;
77     uint8_t p_startcode[3];
78
79     /* Sequence header and extension */
80     block_t *p_seq;
81     block_t *p_ext;
82
83     /* Current frame being built */
84     block_t    *p_frame;
85     vlc_bool_t b_frame_slice;
86     mtime_t i_pts;
87     mtime_t i_dts;
88
89     /* Sequence properties */
90     int         i_frame_rate;
91     int         i_frame_rate_base;
92     vlc_bool_t  b_seq_progressive;
93     vlc_bool_t  b_low_delay;
94     int         i_aspect_ratio_info;
95     vlc_bool_t  b_inited;
96
97     /* Picture properties */
98     int i_temporal_ref;
99     int i_picture_type;
100     int i_picture_structure;
101     int i_top_field_first;
102     int i_repeat_first_field;
103     int i_progressive_frame;
104
105     mtime_t i_interpolated_dts;
106     mtime_t i_old_duration;
107     mtime_t i_last_ref_pts;
108
109     /* Number of pictures since last sequence header */
110     int i_seq_old;
111
112 };
113
114 enum {
115     STATE_NOSYNC,
116     STATE_NEXT_SYNC
117 };
118
119 /*****************************************************************************
120  * Open:
121  *****************************************************************************/
122 static int Open( vlc_object_t *p_this )
123 {
124     decoder_t *p_dec = (decoder_t*)p_this;
125     decoder_sys_t *p_sys;
126
127     if( p_dec->fmt_in.i_codec != VLC_FOURCC( 'm', 'p', 'g', '1' ) &&
128         p_dec->fmt_in.i_codec != VLC_FOURCC( 'm', 'p', 'g', '2' ) &&
129         p_dec->fmt_in.i_codec != VLC_FOURCC( 'm', 'p', 'g', 'v' ) )
130     {
131         return VLC_EGENERIC;
132     }
133
134     es_format_Init( &p_dec->fmt_out, VIDEO_ES, VLC_FOURCC('m','p','g','v') );
135     p_dec->pf_packetize = Packetize;
136
137     p_dec->p_sys = p_sys = malloc( sizeof( decoder_sys_t ) );
138
139     /* Misc init */
140     p_sys->i_state = STATE_NOSYNC;
141     p_sys->bytestream = block_BytestreamInit( p_dec );
142     p_sys->p_startcode[0] = 0;
143     p_sys->p_startcode[1] = 0;
144     p_sys->p_startcode[2] = 1;
145     p_sys->i_offset = 0;
146
147     p_sys->p_seq = NULL;
148     p_sys->p_ext = NULL;
149     p_sys->p_frame = NULL;
150     p_sys->b_frame_slice = VLC_FALSE;
151
152     p_sys->i_dts = p_sys->i_pts = 0;
153
154     p_sys->i_frame_rate = 1;
155     p_sys->i_frame_rate_base = 1;
156     p_sys->b_seq_progressive = VLC_TRUE;
157     p_sys->b_low_delay = VLC_TRUE;
158     p_sys->i_seq_old = 0;
159
160     p_sys->i_temporal_ref = 0;
161     p_sys->i_picture_type = 0;
162     p_sys->i_picture_structure = 0x03; /* frame */
163     p_sys->i_top_field_first = 0;
164     p_sys->i_repeat_first_field = 0;
165     p_sys->i_progressive_frame = 0;
166     p_sys->b_inited = 0;
167
168     p_sys->i_interpolated_dts = 0;
169     p_sys->i_old_duration = 0;
170     p_sys->i_last_ref_pts = 0;
171
172     return VLC_SUCCESS;
173 }
174
175 /*****************************************************************************
176  * Close:
177  *****************************************************************************/
178 static void Close( vlc_object_t *p_this )
179 {
180     decoder_t     *p_dec = (decoder_t*)p_this;
181     decoder_sys_t *p_sys = p_dec->p_sys;
182
183     block_BytestreamRelease( &p_sys->bytestream );
184
185     if( p_sys->p_seq )
186     {
187         block_Release( p_sys->p_seq );
188     }
189     if( p_sys->p_ext )
190     {
191         block_Release( p_sys->p_ext );
192     }
193     if( p_sys->p_frame )
194     {
195         block_ChainRelease( p_sys->p_frame );
196     }
197
198     free( p_sys );
199 }
200
201 /*****************************************************************************
202  * Packetize:
203  *****************************************************************************/
204 static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
205 {
206     decoder_sys_t *p_sys = p_dec->p_sys;
207     block_t       *p_pic;
208
209     if( pp_block == NULL || *pp_block == NULL )
210     {
211         return NULL;
212     }
213
214     if( (*pp_block)->i_flags&BLOCK_FLAG_DISCONTINUITY )
215     {
216         p_sys->i_state = STATE_NOSYNC;
217         if( p_sys->p_frame ) block_ChainRelease( p_sys->p_frame );
218         p_sys->p_frame = NULL;
219         p_sys->b_frame_slice = VLC_FALSE;
220     }
221
222     block_BytestreamPush( &p_sys->bytestream, *pp_block );
223
224     while( 1 )
225     {
226         switch( p_sys->i_state )
227         {
228
229         case STATE_NOSYNC:
230             if( block_FindStartcodeFromOffset( &p_sys->bytestream,
231                     &p_sys->i_offset, p_sys->p_startcode, 3 ) == VLC_SUCCESS )
232             {
233                 p_sys->i_state = STATE_NEXT_SYNC;
234             }
235
236             if( p_sys->i_offset )
237             {
238                 block_SkipBytes( &p_sys->bytestream, p_sys->i_offset );
239                 p_sys->i_offset = 0;
240                 block_BytestreamFlush( &p_sys->bytestream );
241             }
242
243             if( p_sys->i_state != STATE_NEXT_SYNC )
244             {
245                 /* Need more data */
246                 return NULL;
247             }
248
249             p_sys->i_offset = 1; /* To find next startcode */
250
251         case STATE_NEXT_SYNC:
252             /* TODO: If p_block == NULL, flush the buffer without checking the
253              * next sync word */
254
255             /* Find the next startcode */
256             if( block_FindStartcodeFromOffset( &p_sys->bytestream,
257                     &p_sys->i_offset, p_sys->p_startcode, 3 ) != VLC_SUCCESS )
258             {
259                 /* Need more data */
260                 return NULL;
261             }
262
263             /* Get the new fragment and set the pts/dts */
264             p_pic = block_New( p_dec, p_sys->i_offset );
265             p_pic->i_pts = p_sys->bytestream.p_block->i_pts;
266             p_pic->i_dts = p_sys->bytestream.p_block->i_dts;
267
268             block_GetBytes( &p_sys->bytestream, p_pic->p_buffer,
269                             p_pic->i_buffer );
270
271             /* don't reuse the same timestamps several times */
272             if( p_pic->i_buffer >= 4 && p_pic->p_buffer[3] == 0x00 )
273             {
274                 /* We have a picture start code */
275                 p_sys->bytestream.p_block->i_pts = 0;
276                 p_sys->bytestream.p_block->i_dts = 0;
277             }
278
279             p_sys->i_offset = 0;
280
281             /* Get picture if any */
282             if( !( p_pic = ParseMPEGBlock( p_dec, p_pic ) ) )
283             {
284                 p_sys->i_state = STATE_NOSYNC;
285                 break;
286             }
287
288             /* We've just started the stream, wait for the first PTS.
289              * We discard here so we can still get the sequence header. */
290             if( p_sys->i_dts <= 0 && p_sys->i_pts <= 0 &&
291                 p_sys->i_interpolated_dts <= 0 )
292             {
293                 msg_Dbg( p_dec, "need a starting pts/dts" );
294                 p_sys->i_state = STATE_NOSYNC;
295                 block_Release( p_pic );
296                 break;
297             }
298
299             /* When starting the stream we can have the first frame with
300              * a null DTS (i_interpolated_pts is initialized to 0) */
301             if( !p_pic->i_dts ) p_pic->i_dts = p_pic->i_pts;
302
303             /* So p_block doesn't get re-added several times */
304             *pp_block = block_BytestreamPop( &p_sys->bytestream );
305
306             p_sys->i_state = STATE_NOSYNC;
307
308             return p_pic;
309         }
310     }
311 }
312
313 /*****************************************************************************
314  * ParseMPEGBlock: Re-assemble fragments into a block containing a picture
315  *****************************************************************************/
316 static block_t *ParseMPEGBlock( decoder_t *p_dec, block_t *p_frag )
317 {
318     decoder_sys_t *p_sys = p_dec->p_sys;
319     block_t *p_pic = NULL;
320
321     /*
322      * Check if previous picture is finished
323      */
324     if( ( p_sys->b_frame_slice &&
325           (p_frag->p_buffer[3] == 0x00 || p_frag->p_buffer[3] > 0xaf) ) &&
326           p_sys->p_seq == NULL )
327     {
328         /* We have a picture but without a sequence header we can't
329          * do anything */
330         msg_Dbg( p_dec, "waiting for sequence start" );
331         if( p_sys->p_frame ) block_ChainRelease( p_sys->p_frame );
332         p_sys->p_frame = NULL;
333         p_sys->b_frame_slice = VLC_FALSE;
334
335     }
336     else if( p_sys->b_frame_slice &&
337              (p_frag->p_buffer[3] == 0x00 || p_frag->p_buffer[3] > 0xaf) )
338     {
339         mtime_t i_duration;
340
341         p_pic = block_ChainGather( p_sys->p_frame );
342
343         i_duration = (mtime_t)( 1000000 * p_sys->i_frame_rate_base /
344                                 p_sys->i_frame_rate );
345
346         if( !p_sys->b_seq_progressive && p_sys->i_picture_structure != 0x03 )
347         {
348             i_duration /= 2;
349         }
350
351         if( p_sys->b_seq_progressive )
352         {
353             if( p_sys->i_top_field_first == 0 &&
354                 p_sys->i_repeat_first_field == 1 )
355             {
356                 i_duration *= 2;
357             }
358             else if( p_sys->i_top_field_first == 1 &&
359                      p_sys->i_repeat_first_field == 1 )
360             {
361                 i_duration *= 3;
362             }
363         }
364         else
365         {
366             if( p_sys->i_picture_structure == 0x03 )
367             {
368                 if( p_sys->i_progressive_frame && p_sys->i_repeat_first_field )
369                 {
370                     i_duration += i_duration / 2;
371                 }
372             }
373         }
374
375         if( p_sys->b_low_delay || p_sys->i_picture_type == 0x03 )
376         {
377             /* Trivial case (DTS == PTS) */
378             /* Correct interpolated dts when we receive a new pts/dts */
379             if( p_sys->i_pts > 0 ) p_sys->i_interpolated_dts = p_sys->i_pts;
380             if( p_sys->i_dts > 0 ) p_sys->i_interpolated_dts = p_sys->i_dts;
381         }
382         else
383         {
384             /* Correct interpolated dts when we receive a new pts/dts */
385             if( p_sys->i_last_ref_pts > 0 )
386                 p_sys->i_interpolated_dts = p_sys->i_last_ref_pts;
387             if( p_sys->i_dts > 0 ) p_sys->i_interpolated_dts = p_sys->i_dts;
388
389             p_sys->i_last_ref_pts = p_sys->i_pts;
390         }
391
392         p_pic->i_dts = p_sys->i_interpolated_dts;
393
394         /* Set PTS only if we have a B frame or if it comes from the stream */
395         if( p_sys->i_pts > 0 )
396         {
397             p_pic->i_pts = p_sys->i_pts;
398         }
399         else if( p_sys->i_picture_type == 0x03 )
400         {
401             p_pic->i_pts = p_pic->i_dts;
402         }
403         else
404         {
405             p_pic->i_pts = 0;
406         }
407
408         if( p_sys->b_low_delay || p_sys->i_picture_type == 0x03 )
409         {
410             /* Trivial case (DTS == PTS) */
411             p_sys->i_interpolated_dts += i_duration;
412         }
413         else
414         {
415             p_sys->i_interpolated_dts += p_sys->i_old_duration;
416             p_sys->i_old_duration = i_duration;
417         }
418
419         p_pic->i_length = p_sys->i_interpolated_dts - p_pic->i_dts;
420
421 #if 0
422         msg_Dbg( p_dec, "pic: type=%d dts="I64Fd" pts-dts="I64Fd,
423         p_sys->i_picture_type, p_pic->i_dts, p_pic->i_pts - p_pic->i_dts);
424 #endif
425
426         /* Reset context */
427         p_sys->p_frame = NULL;
428         p_sys->b_frame_slice = VLC_FALSE;
429     }
430
431     /*
432      * Check info of current fragment
433      */
434     if( p_frag->p_buffer[3] == 0xb8 )
435     {
436         /* Group start code */
437         if( p_sys->p_seq &&
438             p_sys->i_seq_old > p_sys->i_frame_rate/p_sys->i_frame_rate_base )
439         {
440             /* Usefull for mpeg1: repeat sequence header every second */
441             block_ChainAppend( &p_sys->p_frame,
442                                block_Duplicate( p_sys->p_seq ) );
443             if( p_sys->p_ext )
444             {
445                 block_ChainAppend( &p_sys->p_frame,
446                                    block_Duplicate( p_sys->p_ext ) );
447             }
448
449             p_sys->i_seq_old = 0;
450         }
451     }
452     else if( p_frag->p_buffer[3] == 0xb3 && p_frag->i_buffer >= 8 )
453     {
454         /* Sequence header code */
455         static const int code_to_frame_rate[16][2] =
456         {
457             { 1, 1 },  /* invalid */
458             { 24000, 1001 }, { 24, 1 }, { 25, 1 },       { 30000, 1001 },
459             { 30, 1 },       { 50, 1 }, { 60000, 1001 }, { 60, 1 },
460             /* Unofficial 15fps from Xing*/
461             { 15, 1001 },
462             /* Unofficial economy rates from libmpeg3 */
463             { 5, 1001 }, { 10, 1001 }, { 12, 1001 }, { 15, 1001 },
464             { 1, 1 },  { 1, 1 }  /* invalid */
465         };
466
467         if( p_sys->p_seq ) block_Release( p_sys->p_seq );
468         if( p_sys->p_ext ) block_Release( p_sys->p_ext );
469
470         p_sys->p_seq = block_Duplicate( p_frag );
471         p_sys->i_seq_old = 0;
472         p_sys->p_ext = NULL;
473
474         p_dec->fmt_out.video.i_width =
475             ( p_frag->p_buffer[4] << 4)|(p_frag->p_buffer[5] >> 4 );
476         p_dec->fmt_out.video.i_height =
477             ( (p_frag->p_buffer[5]&0x0f) << 8 )|p_frag->p_buffer[6];
478         p_sys->i_aspect_ratio_info = p_frag->p_buffer[7] >> 4;
479
480         /* TODO: MPEG1 aspect ratio */
481
482         p_sys->i_frame_rate = code_to_frame_rate[p_frag->p_buffer[7]&0x0f][0];
483         p_sys->i_frame_rate_base =
484             code_to_frame_rate[p_frag->p_buffer[7]&0x0f][1];
485
486         p_sys->b_seq_progressive = VLC_TRUE;
487         p_sys->b_low_delay = VLC_TRUE;
488
489         if ( !p_sys->b_inited )
490         {
491             msg_Dbg( p_dec, "Size %dx%d fps=%.3f",
492                  p_dec->fmt_out.video.i_width, p_dec->fmt_out.video.i_height,
493                  p_sys->i_frame_rate / (float)p_sys->i_frame_rate_base );
494             p_sys->b_inited = 1;
495         }
496     }
497     else if( p_frag->p_buffer[3] == 0xb5 )
498     {
499         int i_type = p_frag->p_buffer[4] >> 4;
500
501         /* Extention start code */
502         if( i_type == 0x01 )
503         {
504             static const int mpeg2_aspect[16][2] =
505             {
506                 {0,1}, {1,1}, {4,3}, {16,9}, {221,100},
507                 {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1},
508                 {0,1}, {0,1}
509             };
510
511             /* sequence extention */
512             if( p_sys->p_ext) block_Release( p_sys->p_ext );
513             p_sys->p_ext = block_Duplicate( p_frag );
514
515             if( p_frag->i_buffer >= 10 )
516             {
517                 p_sys->b_seq_progressive =
518                     p_frag->p_buffer[5]&0x08 ? VLC_TRUE : VLC_FALSE;
519                 p_sys->b_low_delay =
520                     p_frag->p_buffer[9]&0x80 ? VLC_TRUE : VLC_FALSE;
521             }
522
523             p_dec->fmt_out.video.i_aspect =
524                 mpeg2_aspect[p_sys->i_aspect_ratio_info][0] *
525                 VOUT_ASPECT_FACTOR /
526                 mpeg2_aspect[p_sys->i_aspect_ratio_info][1];
527
528         }
529         else if( i_type == 0x08 )
530         {
531             /* picture extention */
532             p_sys->i_picture_structure = p_frag->p_buffer[6]&0x03;
533             p_sys->i_top_field_first   = p_frag->p_buffer[7] >> 7;
534             p_sys->i_repeat_first_field= (p_frag->p_buffer[7]>>1)&0x01;
535             p_sys->i_progressive_frame = p_frag->p_buffer[8] >> 7;
536         }
537     }
538     else if( p_frag->p_buffer[3] == 0x00 )
539     {
540         /* Picture start code */
541         p_sys->i_seq_old++;
542
543         if( p_frag->i_buffer >= 6 )
544         {
545             p_sys->i_temporal_ref =
546                 ( p_frag->p_buffer[4] << 2 )|(p_frag->p_buffer[5] >> 6);
547             p_sys->i_picture_type = ( p_frag->p_buffer[5] >> 3 ) & 0x03;
548         }
549
550         p_sys->i_dts = p_frag->i_dts;
551         p_sys->i_pts = p_frag->i_pts;
552     }
553     else if( p_frag->p_buffer[3] >= 0x01 && p_frag->p_buffer[3] <= 0xaf )
554     {
555         /* Slice start code */
556         p_sys->b_frame_slice = VLC_TRUE;
557     }
558
559     /* Append the block */
560     block_ChainAppend( &p_sys->p_frame, p_frag );
561
562     return p_pic;
563 }