]> git.sesse.net Git - vlc/blob - modules/packetizer/mpegvideo.c
macosx: fixed menubar appearance in fullscreen mode by partially reverting [46c93c9cc...
[vlc] / modules / packetizer / mpegvideo.c
1 /*****************************************************************************
2  * mpegvideo.c: parse and packetize an MPEG1/2 video stream
3  *****************************************************************************
4  * Copyright (C) 2001-2006 the VideoLAN team
5  * $Id$
6  *
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>
11  *
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.
16  *
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.
21  *
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  *****************************************************************************/
26
27 /*****************************************************************************
28  * Problem with this implementation:
29  *
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).
36  *
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  *****************************************************************************/
40
41 /*****************************************************************************
42  * Preamble
43  *****************************************************************************/
44
45 #ifdef HAVE_CONFIG_H
46 # include "config.h"
47 #endif
48
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"
55 #include "packetizer_helper.h"
56
57 #define SYNC_INTRAFRAME_TEXT N_("Sync on Intra Frame")
58 #define SYNC_INTRAFRAME_LONGTEXT N_("Normally the packetizer would " \
59     "sync on the next full frame. This flags instructs the packetizer " \
60     "to sync on the first Intra Frame found.")
61
62 /*****************************************************************************
63  * Module descriptor
64  *****************************************************************************/
65 static int  Open ( vlc_object_t * );
66 static void Close( vlc_object_t * );
67
68 vlc_module_begin ()
69     set_category( CAT_SOUT )
70     set_subcategory( SUBCAT_SOUT_PACKETIZER )
71     set_description( N_("MPEG-I/II video packetizer") )
72     set_shortname( N_("MPEG Video") )
73     set_capability( "packetizer", 50 )
74     set_callbacks( Open, Close )
75
76     add_bool( "packetizer-mpegvideo-sync-iframe", 0, NULL, SYNC_INTRAFRAME_TEXT,
77               SYNC_INTRAFRAME_LONGTEXT, true )
78 vlc_module_end ()
79
80 /*****************************************************************************
81  * Local prototypes
82  *****************************************************************************/
83 struct decoder_sys_t
84 {
85     /*
86      * Input properties
87      */
88     packetizer_t packetizer;
89
90     /* Sequence header and extension */
91     block_t *p_seq;
92     block_t *p_ext;
93
94     /* Current frame being built */
95     block_t    *p_frame;
96     block_t    **pp_last;
97
98     bool b_frame_slice;
99     mtime_t i_pts;
100     mtime_t i_dts;
101
102     /* Sequence properties */
103     int         i_frame_rate;
104     int         i_frame_rate_base;
105     bool  b_seq_progressive;
106     bool  b_low_delay;
107     int         i_aspect_ratio_info;
108     bool  b_inited;
109
110     /* Picture properties */
111     int i_temporal_ref;
112     int i_picture_type;
113     int i_picture_structure;
114     int i_top_field_first;
115     int i_repeat_first_field;
116     int i_progressive_frame;
117
118     mtime_t i_interpolated_dts;
119     mtime_t i_last_ref_pts;
120     bool b_second_field;
121
122     /* Number of pictures since last sequence header */
123     int i_seq_old;
124
125     /* Sync behaviour */
126     bool  b_sync_on_intra_frame;
127     bool  b_discontinuity;
128
129     /* */
130     bool b_cc_reset;
131     uint32_t i_cc_flags;
132     mtime_t i_cc_pts;
133     mtime_t i_cc_dts;
134     cc_data_t cc;
135 };
136
137 static block_t *Packetize( decoder_t *, block_t ** );
138 static block_t *GetCc( decoder_t *p_dec, bool pb_present[4] );
139
140 static void PacketizeReset( void *p_private, bool b_broken );
141 static block_t *PacketizeParse( void *p_private, bool *pb_ts_used, block_t * );
142 static int PacketizeValidate( void *p_private, block_t * );
143
144 static block_t *ParseMPEGBlock( decoder_t *, block_t * );
145
146 static const uint8_t p_mp2v_startcode[3] = { 0x00, 0x00, 0x01 };
147
148 /*****************************************************************************
149  * Open:
150  *****************************************************************************/
151 static int Open( vlc_object_t *p_this )
152 {
153     decoder_t *p_dec = (decoder_t*)p_this;
154     decoder_sys_t *p_sys;
155
156     if( p_dec->fmt_in.i_codec != VLC_FOURCC( 'm', 'p', 'g', '1' ) &&
157         p_dec->fmt_in.i_codec != VLC_FOURCC( 'm', 'p', 'g', '2' ) &&
158         p_dec->fmt_in.i_codec != VLC_FOURCC( 'm', 'p', 'g', 'v' ) )
159     {
160         return VLC_EGENERIC;
161     }
162
163     es_format_Init( &p_dec->fmt_out, VIDEO_ES, VLC_FOURCC('m','p','g','v') );
164     p_dec->pf_packetize = Packetize;
165     p_dec->pf_get_cc = GetCc;
166
167     p_dec->p_sys = p_sys = malloc( sizeof( decoder_sys_t ) );
168     if( !p_dec->p_sys )
169         return VLC_ENOMEM;
170     memset( p_dec->p_sys, 0, sizeof( decoder_sys_t ) );
171
172     /* Misc init */
173     packetizer_Init( &p_sys->packetizer,
174                      p_mp2v_startcode, sizeof(p_mp2v_startcode),
175                      NULL, 0,
176                      PacketizeReset, PacketizeParse, PacketizeValidate, p_dec );
177
178     p_sys->p_seq = NULL;
179     p_sys->p_ext = NULL;
180     p_sys->p_frame = NULL;
181     p_sys->pp_last = &p_sys->p_frame;
182     p_sys->b_frame_slice = false;
183
184     p_sys->i_dts = p_sys->i_pts = 0;
185
186     p_sys->i_frame_rate = 1;
187     p_sys->i_frame_rate_base = 1;
188     p_sys->b_seq_progressive = true;
189     p_sys->b_low_delay = true;
190     p_sys->i_seq_old = 0;
191
192     p_sys->i_temporal_ref = 0;
193     p_sys->i_picture_type = 0;
194     p_sys->i_picture_structure = 0x03; /* frame */
195     p_sys->i_top_field_first = 0;
196     p_sys->i_repeat_first_field = 0;
197     p_sys->i_progressive_frame = 0;
198     p_sys->b_inited = 0;
199
200     p_sys->i_interpolated_dts = 0;
201     p_sys->i_last_ref_pts = 0;
202     p_sys->b_second_field = 0;
203
204     p_sys->b_discontinuity = false;
205     p_sys->b_sync_on_intra_frame = var_CreateGetBool( p_dec, "packetizer-mpegvideo-sync-iframe" );
206     if( p_sys->b_sync_on_intra_frame )
207         msg_Dbg( p_dec, "syncing on intra frame now" );
208
209     p_sys->b_cc_reset = false;
210     p_sys->i_cc_pts = 0;
211     p_sys->i_cc_dts = 0;
212     p_sys->i_cc_flags = 0;
213     cc_Init( &p_sys->cc );
214
215     return VLC_SUCCESS;
216 }
217
218 /*****************************************************************************
219  * Close:
220  *****************************************************************************/
221 static void Close( vlc_object_t *p_this )
222 {
223     decoder_t     *p_dec = (decoder_t*)p_this;
224     decoder_sys_t *p_sys = p_dec->p_sys;
225
226     if( p_sys->p_seq )
227     {
228         block_Release( p_sys->p_seq );
229     }
230     if( p_sys->p_ext )
231     {
232         block_Release( p_sys->p_ext );
233     }
234     if( p_sys->p_frame )
235     {
236         block_ChainRelease( p_sys->p_frame );
237     }
238     packetizer_Clean( &p_sys->packetizer );
239
240     var_Destroy( p_dec, "packetizer-mpegvideo-sync-iframe" );
241
242     free( p_sys );
243 }
244
245 /*****************************************************************************
246  * Packetize:
247  *****************************************************************************/
248 static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
249 {
250     decoder_sys_t *p_sys = p_dec->p_sys;
251
252     return packetizer_Packetize( &p_sys->packetizer, pp_block );
253 }
254
255 /*****************************************************************************
256  * GetCc:
257  *****************************************************************************/
258 static block_t *GetCc( decoder_t *p_dec, bool pb_present[4] )
259 {
260     decoder_sys_t *p_sys = p_dec->p_sys;
261     block_t *p_cc;
262     int i;
263
264     for( i = 0; i < 4; i++ )
265         pb_present[i] = p_sys->cc.pb_present[i];
266
267     if( p_sys->cc.i_data <= 0 )
268         return NULL;
269
270     p_cc = block_New( p_dec, p_sys->cc.i_data);
271     if( p_cc )
272     {
273         memcpy( p_cc->p_buffer, p_sys->cc.p_data, p_sys->cc.i_data );
274         p_cc->i_dts = 
275         p_cc->i_pts = p_sys->cc.b_reorder ? p_sys->i_cc_pts : p_sys->i_cc_dts;
276         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);
277     }
278     cc_Flush( &p_sys->cc );
279     return p_cc;
280 }
281
282 /*****************************************************************************
283  * Helpers:
284  *****************************************************************************/
285 static void PacketizeReset( void *p_private, bool b_broken )
286 {
287     decoder_t *p_dec = p_private;
288     decoder_sys_t *p_sys = p_dec->p_sys;
289
290     if( b_broken )
291     {
292         p_sys->b_discontinuity = true;
293         if( p_sys->p_frame )
294             block_ChainRelease( p_sys->p_frame );
295         p_sys->p_frame = NULL;
296         p_sys->pp_last = &p_sys->p_frame;
297         p_sys->b_frame_slice = false;
298     }
299     p_sys->i_dts = 0;
300     p_sys->i_pts = 0;
301     p_sys->i_interpolated_dts = 0;
302     p_sys->i_last_ref_pts = 0;
303 }
304
305 static block_t *PacketizeParse( void *p_private, bool *pb_ts_used, block_t *p_block )
306 {
307     decoder_t *p_dec = p_private;
308
309     /* Check if we have a picture start code */
310     *pb_ts_used = p_block->i_buffer >= 4 && p_block->p_buffer[3] == 0x00;
311
312     return ParseMPEGBlock( p_dec, p_block );
313 }
314
315
316 static int PacketizeValidate( void *p_private, block_t *p_au )
317 {
318     decoder_t *p_dec = p_private;
319     decoder_sys_t *p_sys = p_dec->p_sys;
320
321     /* If a discontinuity has been encountered, then wait till
322      * the next Intra frame before continuing with packetizing */
323     if( p_sys->b_discontinuity &&
324         p_sys->b_sync_on_intra_frame )
325     {
326         if( (p_au->i_flags & BLOCK_FLAG_TYPE_I) == 0 )
327         {
328             msg_Dbg( p_dec, "waiting on intra frame" );
329             return VLC_EGENERIC;
330         }
331         msg_Dbg( p_dec, "synced on intra frame" );
332         p_sys->b_discontinuity = false;
333         p_au->i_flags |= BLOCK_FLAG_DISCONTINUITY;
334     }
335
336     /* We've just started the stream, wait for the first PTS.
337      * We discard here so we can still get the sequence header. */
338     if( p_sys->i_dts <= 0 && p_sys->i_pts <= 0 &&
339         p_sys->i_interpolated_dts <= 0 )
340     {
341         msg_Dbg( p_dec, "need a starting pts/dts" );
342         return VLC_EGENERIC;
343     }
344
345     /* When starting the stream we can have the first frame with
346      * a null DTS (i_interpolated_pts is initialized to 0) */
347     if( !p_au->i_dts )
348         p_au->i_dts = p_au->i_pts;
349
350     return VLC_SUCCESS;
351 }
352 /*****************************************************************************
353  * ParseMPEGBlock: Re-assemble fragments into a block containing a picture
354  *****************************************************************************/
355 static block_t *ParseMPEGBlock( decoder_t *p_dec, block_t *p_frag )
356 {
357     decoder_sys_t *p_sys = p_dec->p_sys;
358     block_t *p_pic = NULL;
359
360     /*
361      * Check if previous picture is finished
362      */
363     if( ( p_sys->b_frame_slice &&
364           (p_frag->p_buffer[3] == 0x00 || p_frag->p_buffer[3] > 0xaf) ) &&
365           p_sys->p_seq == NULL )
366     {
367         /* We have a picture but without a sequence header we can't
368          * do anything */
369         msg_Dbg( p_dec, "waiting for sequence start" );
370         if( p_sys->p_frame ) block_ChainRelease( p_sys->p_frame );
371         p_sys->p_frame = NULL;
372         p_sys->pp_last = &p_sys->p_frame;
373         p_sys->b_frame_slice = false;
374
375     }
376     else if( p_sys->b_frame_slice &&
377              (p_frag->p_buffer[3] == 0x00 || p_frag->p_buffer[3] > 0xaf) )
378     {
379         const bool b_eos = p_frag->p_buffer[3] == 0xb7;
380
381         mtime_t i_duration;
382
383         if( b_eos )
384         {
385             block_ChainLastAppend( &p_sys->pp_last, p_frag );
386             p_frag = NULL;
387         }
388
389         p_pic = block_ChainGather( p_sys->p_frame );
390
391         if( b_eos )
392             p_pic->i_flags |= BLOCK_FLAG_END_OF_SEQUENCE;
393
394         i_duration = (mtime_t)( 1000000 * p_sys->i_frame_rate_base /
395                                 p_sys->i_frame_rate );
396
397         if( !p_sys->b_seq_progressive && p_sys->i_picture_structure != 0x03 )
398         {
399             i_duration /= 2;
400         }
401
402         if( p_sys->b_seq_progressive )
403         {
404             if( p_sys->i_top_field_first == 0 &&
405                 p_sys->i_repeat_first_field == 1 )
406             {
407                 i_duration *= 2;
408             }
409             else if( p_sys->i_top_field_first == 1 &&
410                      p_sys->i_repeat_first_field == 1 )
411             {
412                 i_duration *= 3;
413             }
414         }
415         else
416         {
417             if( p_sys->i_picture_structure == 0x03 )
418             {
419                 if( p_sys->i_progressive_frame && p_sys->i_repeat_first_field )
420                 {
421                     i_duration += i_duration / 2;
422                 }
423             }
424         }
425
426         if( p_sys->b_low_delay || p_sys->i_picture_type == 0x03 )
427         {
428             /* Trivial case (DTS == PTS) */
429             /* Correct interpolated dts when we receive a new pts/dts */
430             if( p_sys->i_pts > 0 ) p_sys->i_interpolated_dts = p_sys->i_pts;
431             if( p_sys->i_dts > 0 ) p_sys->i_interpolated_dts = p_sys->i_dts;
432         }
433         else
434         {
435             /* Correct interpolated dts when we receive a new pts/dts */
436             if( p_sys->i_last_ref_pts > 0 && !p_sys->b_second_field )
437                 p_sys->i_interpolated_dts = p_sys->i_last_ref_pts;
438             if( p_sys->i_dts > 0 ) p_sys->i_interpolated_dts = p_sys->i_dts;
439
440             if( !p_sys->b_second_field )
441                 p_sys->i_last_ref_pts = p_sys->i_pts;
442         }
443
444         p_pic->i_dts = p_sys->i_interpolated_dts;
445         p_sys->i_interpolated_dts += i_duration;
446
447         /* Set PTS only if we have a B frame or if it comes from the stream */
448         if( p_sys->i_pts > 0 )
449         {
450             p_pic->i_pts = p_sys->i_pts;
451         }
452         else if( p_sys->i_picture_type == 0x03 )
453         {
454             p_pic->i_pts = p_pic->i_dts;
455         }
456         else
457         {
458             p_pic->i_pts = 0;
459         }
460
461         switch ( p_sys->i_picture_type )
462         {
463         case 0x01:
464             p_pic->i_flags |= BLOCK_FLAG_TYPE_I;
465             break;
466         case 0x02:
467             p_pic->i_flags |= BLOCK_FLAG_TYPE_P;
468             break;
469         case 0x03:
470             p_pic->i_flags |= BLOCK_FLAG_TYPE_B;
471             break;
472         }
473
474         p_pic->i_length = p_sys->i_interpolated_dts - p_pic->i_dts;
475
476 #if 0
477         msg_Dbg( p_dec, "pic: type=%d dts=%"PRId64" pts-dts=%"PRId64,
478         p_sys->i_picture_type, p_pic->i_dts, p_pic->i_pts - p_pic->i_dts);
479 #endif
480
481         /* Reset context */
482         p_sys->p_frame = NULL;
483         p_sys->pp_last = &p_sys->p_frame;
484         p_sys->b_frame_slice = false;
485
486         if( p_sys->i_picture_structure != 0x03 )
487         {
488             p_sys->b_second_field = !p_sys->b_second_field;
489         }
490         else
491         {
492             p_sys->b_second_field = 0;
493         }
494
495         /* CC */
496         p_sys->b_cc_reset = true;
497         p_sys->i_cc_pts = p_pic->i_pts;
498         p_sys->i_cc_dts = p_pic->i_dts;
499         p_sys->i_cc_flags = p_pic->i_flags;
500     }
501
502     if( !p_pic && p_sys->b_cc_reset )
503     {
504         p_sys->b_cc_reset = false;
505         cc_Flush( &p_sys->cc );
506     }
507
508     if( !p_frag )
509         return p_pic;
510     /*
511      * Check info of current fragment
512      */
513     if( p_frag->p_buffer[3] == 0xb8 )
514     {
515         /* Group start code */
516         if( p_sys->p_seq &&
517             p_sys->i_seq_old > p_sys->i_frame_rate/p_sys->i_frame_rate_base )
518         {
519             /* Usefull for mpeg1: repeat sequence header every second */
520             block_ChainLastAppend( &p_sys->pp_last, block_Duplicate( p_sys->p_seq ) );
521             if( p_sys->p_ext )
522             {
523                 block_ChainLastAppend( &p_sys->pp_last, block_Duplicate( p_sys->p_ext ) );
524             }
525
526             p_sys->i_seq_old = 0;
527         }
528     }
529     else if( p_frag->p_buffer[3] == 0xb3 && p_frag->i_buffer >= 8 )
530     {
531         /* Sequence header code */
532         static const int code_to_frame_rate[16][2] =
533         {
534             { 1, 1 },  /* invalid */
535             { 24000, 1001 }, { 24, 1 }, { 25, 1 },       { 30000, 1001 },
536             { 30, 1 },       { 50, 1 }, { 60000, 1001 }, { 60, 1 },
537             /* Unofficial 15fps from Xing*/
538             { 15, 1001 },
539             /* Unofficial economy rates from libmpeg3 */
540             { 5, 1001 }, { 10, 1001 }, { 12, 1001 }, { 15, 1001 },
541             { 1, 1 },  { 1, 1 }  /* invalid */
542         };
543
544         if( p_sys->p_seq ) block_Release( p_sys->p_seq );
545         if( p_sys->p_ext ) block_Release( p_sys->p_ext );
546
547         p_sys->p_seq = block_Duplicate( p_frag );
548         p_sys->i_seq_old = 0;
549         p_sys->p_ext = NULL;
550
551         p_dec->fmt_out.video.i_width =
552             ( p_frag->p_buffer[4] << 4)|(p_frag->p_buffer[5] >> 4 );
553         p_dec->fmt_out.video.i_height =
554             ( (p_frag->p_buffer[5]&0x0f) << 8 )|p_frag->p_buffer[6];
555         p_sys->i_aspect_ratio_info = p_frag->p_buffer[7] >> 4;
556
557         /* TODO: MPEG1 aspect ratio */
558
559         p_sys->i_frame_rate = code_to_frame_rate[p_frag->p_buffer[7]&0x0f][0];
560         p_sys->i_frame_rate_base =
561             code_to_frame_rate[p_frag->p_buffer[7]&0x0f][1];
562
563         p_dec->fmt_out.video.i_frame_rate = p_sys->i_frame_rate;
564         p_dec->fmt_out.video.i_frame_rate_base = p_sys->i_frame_rate_base;
565
566         p_sys->b_seq_progressive = true;
567         p_sys->b_low_delay = true;
568
569         if ( !p_sys->b_inited )
570         {
571             msg_Dbg( p_dec, "size %dx%d fps=%.3f",
572                  p_dec->fmt_out.video.i_width, p_dec->fmt_out.video.i_height,
573                  p_sys->i_frame_rate / (float)p_sys->i_frame_rate_base );
574             p_sys->b_inited = 1;
575         }
576     }
577     else if( p_frag->p_buffer[3] == 0xb5 )
578     {
579         int i_type = p_frag->p_buffer[4] >> 4;
580
581         /* Extension start code */
582         if( i_type == 0x01 )
583         {
584 #if 0
585             static const int mpeg2_aspect[16][2] =
586             {
587                 {0,1}, {1,1}, {4,3}, {16,9}, {221,100},
588                 {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1}, {0,1},
589                 {0,1}, {0,1}
590             };
591 #endif
592
593             /* sequence extension */
594             if( p_sys->p_ext) block_Release( p_sys->p_ext );
595             p_sys->p_ext = block_Duplicate( p_frag );
596
597             if( p_frag->i_buffer >= 10 )
598             {
599                 p_sys->b_seq_progressive =
600                     p_frag->p_buffer[5]&0x08 ? true : false;
601                 p_sys->b_low_delay =
602                     p_frag->p_buffer[9]&0x80 ? true : false;
603             }
604
605             /* Do not set aspect ratio : in case we're transcoding,
606              * transcode will take our fmt_out as a fmt_in to libmpeg2.
607              * libmpeg2.c will then believe that the user has requested
608              * a specific aspect ratio, which she hasn't. Thus in case
609              * of aspect ratio change, we're screwed. --Meuuh
610              */
611 #if 0
612             p_dec->fmt_out.video.i_aspect =
613                 mpeg2_aspect[p_sys->i_aspect_ratio_info][0] *
614                 VOUT_ASPECT_FACTOR /
615                 mpeg2_aspect[p_sys->i_aspect_ratio_info][1];
616 #endif
617
618         }
619         else if( i_type == 0x08 )
620         {
621             /* picture extension */
622             p_sys->i_picture_structure = p_frag->p_buffer[6]&0x03;
623             p_sys->i_top_field_first   = p_frag->p_buffer[7] >> 7;
624             p_sys->i_repeat_first_field= (p_frag->p_buffer[7]>>1)&0x01;
625             p_sys->i_progressive_frame = p_frag->p_buffer[8] >> 7;
626         }
627     }
628     else if( p_frag->p_buffer[3] == 0xb2 && p_frag->i_buffer > 4 )
629     {
630         cc_Extract( &p_sys->cc, &p_frag->p_buffer[4], p_frag->i_buffer - 4 );
631     }
632     else if( p_frag->p_buffer[3] == 0x00 )
633     {
634         /* Picture start code */
635         p_sys->i_seq_old++;
636
637         if( p_frag->i_buffer >= 6 )
638         {
639             p_sys->i_temporal_ref =
640                 ( p_frag->p_buffer[4] << 2 )|(p_frag->p_buffer[5] >> 6);
641             p_sys->i_picture_type = ( p_frag->p_buffer[5] >> 3 ) & 0x03;
642         }
643
644         p_sys->i_dts = p_frag->i_dts;
645         p_sys->i_pts = p_frag->i_pts;
646     }
647     else if( p_frag->p_buffer[3] >= 0x01 && p_frag->p_buffer[3] <= 0xaf )
648     {
649         /* Slice start code */
650         p_sys->b_frame_slice = true;
651     }
652
653     /* Append the block */
654     block_ChainLastAppend( &p_sys->pp_last, p_frag );
655
656     return p_pic;
657 }