]> git.sesse.net Git - vlc/blob - modules/codec/avcodec/video.c
Fix flickering when decoding TSCC. (Backport if we're doing a 0.9.10)
[vlc] / modules / codec / avcodec / video.c
1 /*****************************************************************************
2  * video.c: video decoder using the ffmpeg library
3  *****************************************************************************
4  * Copyright (C) 1999-2001 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_codec.h>
34 #include <vlc_vout.h>
35 #include <vlc_codecs.h>                               /* BITMAPINFOHEADER */
36 #include <vlc_avcodec.h>
37
38 /* ffmpeg header */
39 #ifdef HAVE_LIBAVCODEC_AVCODEC_H
40 #   include <libavcodec/avcodec.h>
41 #elif defined(HAVE_FFMPEG_AVCODEC_H)
42 #   include <ffmpeg/avcodec.h>
43 #else
44 #   include <avcodec.h>
45 #endif
46
47 #include "avcodec.h"
48
49 /*****************************************************************************
50  * decoder_sys_t : decoder descriptor
51  *****************************************************************************/
52 struct decoder_sys_t
53 {
54     FFMPEG_COMMON_MEMBERS
55
56     /* Video decoder specific part */
57     mtime_t input_pts;
58     mtime_t input_dts;
59     mtime_t i_pts;
60
61     AVFrame          *p_ff_pic;
62
63     /* for frame skipping algo */
64     bool b_hurry_up;
65     enum AVDiscard i_skip_frame;
66     enum AVDiscard i_skip_idct;
67
68     /* how many decoded frames are late */
69     int     i_late_frames;
70     mtime_t i_late_frames_start;
71
72     /* for direct rendering */
73     bool b_direct_rendering;
74
75     bool b_has_b_frames;
76
77     /* Hack to force display of still pictures */
78     bool b_first_frame;
79
80     int i_buffer_orig, i_buffer;
81     char *p_buffer_orig, *p_buffer;
82
83     /* */
84     AVPaletteControl palette;
85
86     /* */
87     bool b_flush;
88 };
89
90 /* FIXME (dummy palette for now) */
91 static const AVPaletteControl palette_control;
92
93 /*****************************************************************************
94  * Local prototypes
95  *****************************************************************************/
96 static void ffmpeg_InitCodec      ( decoder_t * );
97 static int  ffmpeg_OpenCodec      ( decoder_t * );
98 static void ffmpeg_CopyPicture    ( decoder_t *, picture_t *, AVFrame * );
99 static int  ffmpeg_GetFrameBuf    ( struct AVCodecContext *, AVFrame * );
100 static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *, AVFrame * );
101 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *, AVFrame * );
102 static void ffmpeg_NextPts( decoder_t * );
103
104 static uint32_t ffmpeg_CodecTag( vlc_fourcc_t fcc )
105 {
106     uint8_t *p = (uint8_t*)&fcc;
107     return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
108 }
109
110 /*****************************************************************************
111  * Local Functions
112  *****************************************************************************/
113
114 /* Returns a new picture buffer */
115 static inline picture_t *ffmpeg_NewPictBuf( decoder_t *p_dec,
116                                             AVCodecContext *p_context )
117 {
118     picture_t *p_pic;
119
120     p_dec->fmt_out.video.i_width = p_context->width;
121     p_dec->fmt_out.video.i_height = p_context->height;
122
123     if( !p_context->width || !p_context->height )
124     {
125         return NULL; /* invalid display size */
126     }
127
128     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS )
129     {
130         /* we are doomed, but not really, because most codecs set their pix_fmt much later */
131         p_dec->fmt_out.i_codec = VLC_FOURCC('I','4','2','0');
132     }
133     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
134
135     /* If an aspect-ratio was specified in the input format then force it */
136     if( p_dec->fmt_in.video.i_aspect )
137     {
138         p_dec->fmt_out.video.i_aspect = p_dec->fmt_in.video.i_aspect;
139     }
140     else
141     {
142         p_dec->fmt_out.video.i_aspect =
143             VOUT_ASPECT_FACTOR * ( av_q2d(p_context->sample_aspect_ratio) *
144                 p_context->width / p_context->height );
145         p_dec->fmt_out.video.i_sar_num = p_context->sample_aspect_ratio.num;
146         p_dec->fmt_out.video.i_sar_den = p_context->sample_aspect_ratio.den;
147
148         if( p_dec->fmt_out.video.i_aspect == 0 )
149         {
150             p_dec->fmt_out.video.i_aspect =
151                 VOUT_ASPECT_FACTOR * p_context->width / p_context->height;
152         }
153     }
154
155     if( p_dec->fmt_in.video.i_frame_rate > 0 &&
156         p_dec->fmt_in.video.i_frame_rate_base > 0 )
157     {
158         p_dec->fmt_out.video.i_frame_rate =
159             p_dec->fmt_in.video.i_frame_rate;
160         p_dec->fmt_out.video.i_frame_rate_base =
161             p_dec->fmt_in.video.i_frame_rate_base;
162     }
163     else if( p_context->time_base.num > 0 && p_context->time_base.den > 0 )
164     {
165         p_dec->fmt_out.video.i_frame_rate = p_context->time_base.den;
166         p_dec->fmt_out.video.i_frame_rate_base = p_context->time_base.num;
167     }
168
169     p_pic = decoder_NewPicture( p_dec );
170
171     return p_pic;
172 }
173
174 /*****************************************************************************
175  * InitVideo: initialize the video decoder
176  *****************************************************************************
177  * the ffmpeg codec will be opened, some memory allocated. The vout is not yet
178  * opened (done after the first decoded frame).
179  *****************************************************************************/
180 int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
181                       AVCodec *p_codec, int i_codec_id, const char *psz_namecodec )
182 {
183     decoder_sys_t *p_sys;
184     vlc_value_t val;
185
186     /* Allocate the memory needed to store the decoder's structure */
187     if( ( p_dec->p_sys = p_sys = calloc( 1, sizeof(decoder_sys_t) ) ) == NULL )
188         return VLC_ENOMEM;
189
190     p_sys->p_context = p_context;
191     p_sys->p_codec = p_codec;
192     p_sys->i_codec_id = i_codec_id;
193     p_sys->psz_namecodec = psz_namecodec;
194     p_sys->p_ff_pic = avcodec_alloc_frame();
195     p_sys->b_delayed_open = true;
196
197     /* ***** Fill p_context with init values ***** */
198     p_sys->p_context->codec_tag = ffmpeg_CodecTag( p_dec->fmt_in.i_codec );
199
200     /*  ***** Get configuration of ffmpeg plugin ***** */
201     p_sys->p_context->workaround_bugs =
202         config_GetInt( p_dec, "ffmpeg-workaround-bugs" );
203 #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
204     p_sys->p_context->error_resilience =
205         config_GetInt( p_dec, "ffmpeg-error-resilience" );
206 #else
207     p_sys->p_context->error_recognition =
208         config_GetInt( p_dec, "ffmpeg-error-resilience" );
209 #endif
210
211     var_Create( p_dec, "grayscale", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
212     var_Get( p_dec, "grayscale", &val );
213     if( val.b_bool ) p_sys->p_context->flags |= CODEC_FLAG_GRAY;
214
215     var_Create( p_dec, "ffmpeg-vismv", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
216     var_Get( p_dec, "ffmpeg-vismv", &val );
217     if( val.i_int ) p_sys->p_context->debug_mv = val.i_int;
218
219     var_Create( p_dec, "ffmpeg-lowres", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
220     var_Get( p_dec, "ffmpeg-lowres", &val );
221     if( val.i_int > 0 && val.i_int <= 2 ) p_sys->p_context->lowres = val.i_int;
222
223     var_Create( p_dec, "ffmpeg-skiploopfilter",
224                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
225     var_Get( p_dec, "ffmpeg-skiploopfilter", &val );
226     if( val.i_int > 0 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONREF;
227     if( val.i_int > 1 ) p_sys->p_context->skip_loop_filter = AVDISCARD_BIDIR;
228     if( val.i_int > 2 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONKEY;
229     if( val.i_int > 3 ) p_sys->p_context->skip_loop_filter = AVDISCARD_ALL;
230
231     /* ***** ffmpeg frame skipping ***** */
232     var_Create( p_dec, "ffmpeg-hurry-up", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
233     var_Get( p_dec, "ffmpeg-hurry-up", &val );
234     p_sys->b_hurry_up = val.b_bool;
235
236     var_Create( p_dec, "ffmpeg-skip-frame", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
237     var_Get( p_dec, "ffmpeg-skip-frame", &val );
238     switch( val.i_int )
239     {
240         case -1:
241             p_sys->p_context->skip_frame = AVDISCARD_NONE;
242             break;
243         case 0:
244             p_sys->p_context->skip_frame = AVDISCARD_DEFAULT;
245             break;
246         case 1:
247             p_sys->p_context->skip_frame = AVDISCARD_BIDIR;
248             break;
249         case 2:
250             p_sys->p_context->skip_frame = AVDISCARD_NONKEY;
251             break;
252         case 3:
253             p_sys->p_context->skip_frame = AVDISCARD_ALL;
254             break;
255         default:
256             p_sys->p_context->skip_frame = AVDISCARD_NONE;
257             break;
258     }
259     p_sys->i_skip_frame = p_sys->p_context->skip_frame;
260
261     var_Create( p_dec, "ffmpeg-skip-idct",  VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
262     var_Get( p_dec, "ffmpeg-skip-idct", &val );
263     switch( val.i_int )
264     {
265         case -1:
266             p_sys->p_context->skip_idct = AVDISCARD_NONE;
267             break;
268         case 0:
269             p_sys->p_context->skip_idct = AVDISCARD_DEFAULT;
270             break;
271         case 1:
272             p_sys->p_context->skip_idct = AVDISCARD_BIDIR;
273             break;
274         case 2:
275             p_sys->p_context->skip_idct = AVDISCARD_NONKEY;
276             break;
277         case 3:
278             p_sys->p_context->skip_idct = AVDISCARD_ALL;
279             break;
280         default:
281             p_sys->p_context->skip_idct = AVDISCARD_NONE;
282             break;
283     }
284     p_sys->i_skip_idct = p_sys->p_context->skip_idct;
285
286     /* ***** ffmpeg direct rendering ***** */
287     p_sys->b_direct_rendering = false;
288     var_Create( p_dec, "ffmpeg-dr", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
289     var_Get( p_dec, "ffmpeg-dr", &val );
290     if( val.b_bool && (p_sys->p_codec->capabilities & CODEC_CAP_DR1) &&
291         /* Apparently direct rendering doesn't work with YUV422P */
292         p_sys->p_context->pix_fmt != PIX_FMT_YUV422P &&
293         /* H264 uses too many reference frames */
294         p_sys->i_codec_id != CODEC_ID_H264 &&
295         /* No idea why ... but this fixes flickering on some TSCC streams */
296         p_sys->i_codec_id != CODEC_ID_TSCC &&
297         !p_sys->p_context->debug_mv )
298     {
299         /* Some codecs set pix_fmt only after the 1st frame has been decoded,
300          * so we need to do another check in ffmpeg_GetFrameBuf() */
301         p_sys->b_direct_rendering = true;
302     }
303
304     /* ffmpeg doesn't properly release old pictures when frames are skipped */
305     //if( p_sys->b_hurry_up ) p_sys->b_direct_rendering = false;
306     if( p_sys->b_direct_rendering )
307     {
308         msg_Dbg( p_dec, "using direct rendering" );
309         p_sys->p_context->flags |= CODEC_FLAG_EMU_EDGE;
310     }
311
312     /* Always use our get_buffer wrapper so we can calculate the
313      * PTS correctly */
314     p_sys->p_context->get_buffer = ffmpeg_GetFrameBuf;
315     p_sys->p_context->reget_buffer = ffmpeg_ReGetFrameBuf;
316     p_sys->p_context->release_buffer = ffmpeg_ReleaseFrameBuf;
317     p_sys->p_context->opaque = p_dec;
318
319     /* ***** misc init ***** */
320     p_sys->input_pts = p_sys->input_dts = 0;
321     p_sys->i_pts = 0;
322     p_sys->b_has_b_frames = false;
323     p_sys->b_first_frame = true;
324     p_sys->b_flush = false;
325     p_sys->i_late_frames = 0;
326     p_sys->i_buffer = 0;
327     p_sys->i_buffer_orig = 1;
328     p_sys->p_buffer_orig = p_sys->p_buffer = malloc( p_sys->i_buffer_orig );
329     if( !p_sys->p_buffer_orig )
330     {
331         free( p_sys );
332         return VLC_ENOMEM;
333     }
334
335     /* Set output properties */
336     p_dec->fmt_out.i_cat = VIDEO_ES;
337     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS )
338     {
339         /* we are doomed. but not really, because most codecs set their pix_fmt later on */
340         p_dec->fmt_out.i_codec = VLC_FOURCC('I','4','2','0');
341     }
342     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
343
344     /* Setup palette */
345     memset( &p_sys->palette, 0, sizeof(p_sys->palette) );
346     if( p_dec->fmt_in.video.p_palette )
347     {
348         p_sys->palette.palette_changed = 1;
349
350         for( int i = 0; i < __MIN( AVPALETTE_COUNT, p_dec->fmt_in.video.p_palette->i_entries ); i++ )
351         {
352             union {
353                 uint32_t u;
354                 uint8_t a[4];
355             } c;
356             c.a[0] = p_dec->fmt_in.video.p_palette->palette[i][0];
357             c.a[1] = p_dec->fmt_in.video.p_palette->palette[i][1];
358             c.a[2] = p_dec->fmt_in.video.p_palette->palette[i][2];
359             c.a[3] = p_dec->fmt_in.video.p_palette->palette[i][3];
360
361             p_sys->palette.palette[i] = c.u;
362         }
363         p_sys->p_context->palctrl = &p_sys->palette;
364
365         p_dec->fmt_out.video.p_palette = malloc( sizeof(video_palette_t) );
366         if( p_dec->fmt_out.video.p_palette )
367             *p_dec->fmt_out.video.p_palette = *p_dec->fmt_in.video.p_palette;
368     }
369     else if( p_sys->i_codec_id != CODEC_ID_MSVIDEO1 && p_sys->i_codec_id != CODEC_ID_CINEPAK )
370     {
371         p_sys->p_context->palctrl = &p_sys->palette;
372     }
373
374     /* ***** init this codec with special data ***** */
375     ffmpeg_InitCodec( p_dec );
376
377     /* ***** Open the codec ***** */
378     if( ffmpeg_OpenCodec( p_dec ) < 0 )
379     {
380         msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
381         free( p_sys->p_buffer_orig );
382         free( p_sys );
383         return VLC_EGENERIC;
384     }
385
386     return VLC_SUCCESS;
387 }
388
389 /*****************************************************************************
390  * DecodeVideo: Called to decode one or more frames
391  *****************************************************************************/
392 picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
393 {
394     decoder_sys_t *p_sys = p_dec->p_sys;
395     int b_drawpicture;
396     int b_null_size = false;
397     block_t *p_block;
398
399     if( !pp_block || !*pp_block )
400         return NULL;
401
402     if( !p_sys->p_context->extradata_size && p_dec->fmt_in.i_extra )
403     {
404         ffmpeg_InitCodec( p_dec );
405         if( p_sys->b_delayed_open )
406         {
407             if( ffmpeg_OpenCodec( p_dec ) )
408                 msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
409         }
410     }
411
412     p_block = *pp_block;
413     if( p_sys->b_delayed_open )
414     {
415         block_Release( p_block );
416         return NULL;
417     }
418
419     if( p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) )
420     {
421         p_sys->i_buffer = 0;
422         p_sys->i_pts = 0; /* To make sure we recover properly */
423
424         p_sys->input_pts = p_sys->input_dts = 0;
425         p_sys->i_late_frames = 0;
426
427         block_Release( p_block );
428
429         //if( p_block->i_flags & BLOCK_FLAG_CORRUPTED )
430             //avcodec_flush_buffers( p_sys->p_context );
431         return NULL;
432     }
433
434     if( p_block->i_flags & BLOCK_FLAG_PREROLL )
435     {
436         /* Do not care about late frames when prerolling
437          * TODO avoid decoding of non reference frame
438          * (ie all B except for H264 where it depends only on nal_ref_idc) */
439         p_sys->i_late_frames = 0;
440     }
441
442     if( !p_dec->b_pace_control && (p_sys->i_late_frames > 0) &&
443         (mdate() - p_sys->i_late_frames_start > INT64_C(5000000)) )
444     {
445         if( p_sys->i_pts )
446         {
447             msg_Err( p_dec, "more than 5 seconds of late video -> "
448                      "dropping frame (computer too slow ?)" );
449             p_sys->i_pts = 0; /* To make sure we recover properly */
450         }
451         block_Release( p_block );
452         p_sys->i_late_frames--;
453         return NULL;
454     }
455
456     if( p_block->i_pts > 0 || p_block->i_dts > 0 )
457     {
458         p_sys->input_pts = p_block->i_pts;
459         p_sys->input_dts = p_block->i_dts;
460
461         /* Make sure we don't reuse the same timestamps twice */
462         p_block->i_pts = p_block->i_dts = 0;
463     }
464
465     /* A good idea could be to decode all I pictures and see for the other */
466     if( !p_dec->b_pace_control &&
467         p_sys->b_hurry_up &&
468         (p_sys->i_late_frames > 4) )
469     {
470         b_drawpicture = 0;
471         if( p_sys->i_late_frames < 12 )
472         {
473             p_sys->p_context->skip_frame =
474                     (p_sys->i_skip_frame <= AVDISCARD_BIDIR) ?
475                     AVDISCARD_BIDIR : p_sys->i_skip_frame;
476         }
477         else
478         {
479             /* picture too late, won't decode
480              * but break picture until a new I, and for mpeg4 ...*/
481             p_sys->i_late_frames--; /* needed else it will never be decrease */
482             block_Release( p_block );
483             p_sys->i_buffer = 0;
484             return NULL;
485         }
486     }
487     else
488     {
489         if( p_sys->b_hurry_up )
490             p_sys->p_context->skip_frame = p_sys->i_skip_frame;
491         if( !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
492             b_drawpicture = 1;
493         else
494             b_drawpicture = 0;
495     }
496
497     if( p_sys->p_context->width <= 0 || p_sys->p_context->height <= 0 )
498     {
499         if( p_sys->b_hurry_up )
500             p_sys->p_context->skip_frame = p_sys->i_skip_frame;
501         b_null_size = true;
502     }
503     else if( !b_drawpicture )
504     {
505         /* It creates broken picture
506          * FIXME either our parser or ffmpeg is broken */
507 #if 0
508         if( p_sys->b_hurry_up )
509             p_sys->p_context->skip_frame = __MAX( p_sys->p_context->skip_frame,
510                                                   AVDISCARD_NONREF );
511 #endif
512     }
513
514     /*
515      * Do the actual decoding now
516      */
517
518     /* Don't forget that ffmpeg requires a little more bytes
519      * that the real frame size */
520     if( p_block->i_buffer > 0 )
521     {
522         p_sys->b_flush = ( p_block->i_flags & BLOCK_FLAG_END_OF_SEQUENCE ) != 0;
523
524         p_sys->i_buffer = p_block->i_buffer;
525         if( p_sys->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE >
526             p_sys->i_buffer_orig )
527         {
528             free( p_sys->p_buffer_orig );
529             p_sys->i_buffer_orig =
530                 p_block->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE;
531             p_sys->p_buffer_orig = malloc( p_sys->i_buffer_orig );
532         }
533         p_sys->p_buffer = p_sys->p_buffer_orig;
534         p_sys->i_buffer = p_block->i_buffer;
535         if( !p_sys->p_buffer )
536         {
537             block_Release( p_block );
538             return NULL;
539         }
540         vlc_memcpy( p_sys->p_buffer, p_block->p_buffer, p_block->i_buffer );
541         memset( p_sys->p_buffer + p_block->i_buffer, 0,
542                 FF_INPUT_BUFFER_PADDING_SIZE );
543
544         p_block->i_buffer = 0;
545     }
546
547     while( p_sys->i_buffer > 0 || p_sys->b_flush )
548     {
549         int i_used, b_gotpicture;
550         picture_t *p_pic;
551
552         i_used = avcodec_decode_video( p_sys->p_context, p_sys->p_ff_pic,
553                                        &b_gotpicture,
554                                        p_sys->i_buffer <= 0 && p_sys->b_flush ? NULL : (uint8_t*)p_sys->p_buffer, p_sys->i_buffer );
555
556         if( b_null_size && p_sys->p_context->width > 0 &&
557             p_sys->p_context->height > 0 &&
558             !p_sys->b_flush )
559         {
560             /* Reparse it to not drop the I frame */
561             b_null_size = false;
562             if( p_sys->b_hurry_up )
563                 p_sys->p_context->skip_frame = p_sys->i_skip_frame;
564             i_used = avcodec_decode_video( p_sys->p_context, p_sys->p_ff_pic,
565                                            &b_gotpicture,
566                                            (uint8_t*)p_sys->p_buffer, p_sys->i_buffer );
567         }
568
569         if( p_sys->b_flush )
570             p_sys->b_first_frame = true;
571
572         if( p_sys->i_buffer <= 0 )
573             p_sys->b_flush = false;
574
575         if( i_used < 0 )
576         {
577             if( b_drawpicture )
578                 msg_Warn( p_dec, "cannot decode one frame (%d bytes)",
579                           p_sys->i_buffer );
580             block_Release( p_block );
581             return NULL;
582         }
583         else if( i_used > p_sys->i_buffer )
584         {
585             i_used = p_sys->i_buffer;
586         }
587
588         /* Consumed bytes */
589         p_sys->i_buffer -= i_used;
590         p_sys->p_buffer += i_used;
591
592         /* Nothing to display */
593         if( !b_gotpicture )
594         {
595             if( i_used == 0 ) break;
596             continue;
597         }
598
599         /* Set the PTS */
600         if( p_sys->p_ff_pic->pts )
601             p_sys->i_pts = p_sys->p_ff_pic->pts;
602
603         /* Update frame late count (except when doing preroll) */
604         mtime_t i_display_date = 0;
605         if( !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
606             i_display_date = decoder_GetDisplayDate( p_dec, p_sys->i_pts );
607
608         if( i_display_date > 0 && i_display_date <= mdate() )
609         {
610             p_sys->i_late_frames++;
611             if( p_sys->i_late_frames == 1 )
612                 p_sys->i_late_frames_start = mdate();
613         }
614         else
615         {
616             p_sys->i_late_frames = 0;
617         }
618
619         if( !b_drawpicture || !p_sys->p_ff_pic->linesize[0] )
620         {
621             /* Do not display the picture */
622             p_pic = (picture_t *)p_sys->p_ff_pic->opaque;
623             if( !b_drawpicture && p_pic )
624                 decoder_DeletePicture( p_dec, p_pic );
625
626             ffmpeg_NextPts( p_dec );
627             continue;
628         }
629
630         if( !p_sys->p_ff_pic->opaque )
631         {
632             /* Get a new picture */
633             p_pic = ffmpeg_NewPictBuf( p_dec, p_sys->p_context );
634             if( !p_pic )
635             {
636                 block_Release( p_block );
637                 return NULL;
638             }
639
640             /* Fill p_picture_t from AVVideoFrame and do chroma conversion
641              * if needed */
642             ffmpeg_CopyPicture( p_dec, p_pic, p_sys->p_ff_pic );
643         }
644         else
645         {
646             p_pic = (picture_t *)p_sys->p_ff_pic->opaque;
647         }
648
649         /* Sanity check (seems to be needed for some streams) */
650         if( p_sys->p_ff_pic->pict_type == FF_B_TYPE )
651         {
652             p_sys->b_has_b_frames = true;
653         }
654
655         if( !p_dec->fmt_in.video.i_aspect )
656         {
657             /* Fetch again the aspect ratio in case it changed */
658             p_dec->fmt_out.video.i_aspect =
659                 VOUT_ASPECT_FACTOR
660                     * ( av_q2d(p_sys->p_context->sample_aspect_ratio)
661                     * p_sys->p_context->width / p_sys->p_context->height );
662             p_dec->fmt_out.video.i_sar_num
663                 = p_sys->p_context->sample_aspect_ratio.num;
664             p_dec->fmt_out.video.i_sar_den
665                 = p_sys->p_context->sample_aspect_ratio.den;
666
667             if( p_dec->fmt_out.video.i_aspect == 0 )
668             {
669                 p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR
670                     * p_sys->p_context->width / p_sys->p_context->height;
671             }
672         }
673
674         /* Send decoded frame to vout */
675         if( p_sys->i_pts )
676         {
677             p_pic->date = p_sys->i_pts;
678
679             ffmpeg_NextPts( p_dec );
680
681             if( p_sys->b_first_frame )
682             {
683                 /* Hack to force display of still pictures */
684                 p_sys->b_first_frame = false;
685                 p_pic->b_force = true;
686             }
687
688             p_pic->i_nb_fields = 2 + p_sys->p_ff_pic->repeat_pict;
689             p_pic->b_progressive = !p_sys->p_ff_pic->interlaced_frame;
690             p_pic->b_top_field_first = p_sys->p_ff_pic->top_field_first;
691
692             p_pic->i_qstride = p_sys->p_ff_pic->qstride;
693             int i_mb_h = ( p_pic->format.i_height + 15 ) / 16;
694             p_pic->p_q = malloc( p_pic->i_qstride * i_mb_h );
695             memcpy( p_pic->p_q, p_sys->p_ff_pic->qscale_table,
696                     p_pic->i_qstride * i_mb_h );
697             switch( p_sys->p_ff_pic->qscale_type )
698             {
699                 case FF_QSCALE_TYPE_MPEG1:
700                     p_pic->i_qtype = QTYPE_MPEG1;
701                     break;
702                 case FF_QSCALE_TYPE_MPEG2:
703                     p_pic->i_qtype = QTYPE_MPEG2;
704                     break;
705                 case FF_QSCALE_TYPE_H264:
706                     p_pic->i_qtype = QTYPE_H264;
707                     break;
708             }
709
710             return p_pic;
711         }
712         else
713         {
714             decoder_DeletePicture( p_dec, p_pic );
715         }
716     }
717
718     block_Release( p_block );
719     return NULL;
720 }
721
722 /*****************************************************************************
723  * EndVideo: decoder destruction
724  *****************************************************************************
725  * This function is called when the thread ends after a successful
726  * initialization.
727  *****************************************************************************/
728 void EndVideoDec( decoder_t *p_dec )
729 {
730     decoder_sys_t *p_sys = p_dec->p_sys;
731
732     if( p_sys->p_ff_pic ) av_free( p_sys->p_ff_pic );
733     free( p_sys->p_buffer_orig );
734 }
735
736 /*****************************************************************************
737  * ffmpeg_InitCodec: setup codec extra initialization data for ffmpeg
738  *****************************************************************************/
739 static void ffmpeg_InitCodec( decoder_t *p_dec )
740 {
741     decoder_sys_t *p_sys = p_dec->p_sys;
742     int i_size = p_dec->fmt_in.i_extra;
743
744     if( !i_size ) return;
745
746     if( p_sys->i_codec_id == CODEC_ID_SVQ3 )
747     {
748         uint8_t *p;
749
750         p_sys->p_context->extradata_size = i_size + 12;
751         p = p_sys->p_context->extradata  =
752             malloc( p_sys->p_context->extradata_size );
753         if( !p )
754             return;
755
756         memcpy( &p[0],  "SVQ3", 4 );
757         memset( &p[4], 0, 8 );
758         memcpy( &p[12], p_dec->fmt_in.p_extra, i_size );
759
760         /* Now remove all atoms before the SMI one */
761         if( p_sys->p_context->extradata_size > 0x5a &&
762             strncmp( (char*)&p[0x56], "SMI ", 4 ) )
763         {
764             uint8_t *psz = &p[0x52];
765
766             while( psz < &p[p_sys->p_context->extradata_size - 8] )
767             {
768                 int i_size = GetDWBE( psz );
769                 if( i_size <= 1 )
770                 {
771                     /* FIXME handle 1 as long size */
772                     break;
773                 }
774                 if( !strncmp( (char*)&psz[4], "SMI ", 4 ) )
775                 {
776                     memmove( &p[0x52], psz,
777                              &p[p_sys->p_context->extradata_size] - psz );
778                     break;
779                 }
780
781                 psz += i_size;
782             }
783         }
784     }
785     else
786     {
787         p_sys->p_context->extradata_size = i_size;
788         p_sys->p_context->extradata =
789             malloc( i_size + FF_INPUT_BUFFER_PADDING_SIZE );
790         if( p_sys->p_context->extradata )
791         {
792             memcpy( p_sys->p_context->extradata,
793                     p_dec->fmt_in.p_extra, i_size );
794             memset( &((uint8_t*)p_sys->p_context->extradata)[i_size],
795                     0, FF_INPUT_BUFFER_PADDING_SIZE );
796         }
797     }
798 }
799
800 /*****************************************************************************
801  * ffmpeg_OpenCodec:
802  *****************************************************************************/
803 static int ffmpeg_OpenCodec( decoder_t *p_dec )
804 {
805     decoder_sys_t *p_sys = p_dec->p_sys;
806
807     if( p_sys->p_context->extradata_size <= 0 )
808     {
809         if( p_sys->i_codec_id == CODEC_ID_VC1 ||
810             p_sys->i_codec_id == CODEC_ID_VORBIS ||
811             p_sys->i_codec_id == CODEC_ID_THEORA )
812         {
813             msg_Warn( p_dec, "waiting for extra data for codec %s",
814                       p_sys->psz_namecodec );
815             return 1;
816         }
817     }
818     p_sys->p_context->width  = p_dec->fmt_in.video.i_width;
819     p_sys->p_context->height = p_dec->fmt_in.video.i_height;
820 #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
821     p_sys->p_context->bits_per_sample = p_dec->fmt_in.video.i_bits_per_pixel;
822 #else
823     p_sys->p_context->bits_per_coded_sample = p_dec->fmt_in.video.i_bits_per_pixel;
824 #endif
825
826     int ret;
827     vlc_avcodec_lock();
828     ret = avcodec_open( p_sys->p_context, p_sys->p_codec );
829     vlc_avcodec_unlock();
830     if( ret < 0 )
831         return VLC_EGENERIC;
832     msg_Dbg( p_dec, "ffmpeg codec (%s) started", p_sys->psz_namecodec );
833
834     p_sys->b_delayed_open = false;
835
836     return VLC_SUCCESS;
837 }
838 /*****************************************************************************
839  * ffmpeg_CopyPicture: copy a picture from ffmpeg internal buffers to a
840  *                     picture_t structure (when not in direct rendering mode).
841  *****************************************************************************/
842 static void ffmpeg_CopyPicture( decoder_t *p_dec,
843                                 picture_t *p_pic, AVFrame *p_ff_pic )
844 {
845     decoder_sys_t *p_sys = p_dec->p_sys;
846
847     if( TestFfmpegChroma( p_sys->p_context->pix_fmt, -1 ) == VLC_SUCCESS )
848     {
849         int i_plane, i_size, i_line;
850         uint8_t *p_dst, *p_src;
851         int i_src_stride, i_dst_stride;
852
853         for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
854         {
855             p_src  = p_ff_pic->data[i_plane];
856             p_dst = p_pic->p[i_plane].p_pixels;
857             i_src_stride = p_ff_pic->linesize[i_plane];
858             i_dst_stride = p_pic->p[i_plane].i_pitch;
859
860             i_size = __MIN( i_src_stride, i_dst_stride );
861             for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines;
862                  i_line++ )
863             {
864                 vlc_memcpy( p_dst, p_src, i_size );
865                 p_src += i_src_stride;
866                 p_dst += i_dst_stride;
867             }
868         }
869     }
870     else
871     {
872         msg_Err( p_dec, "don't know how to convert chroma %i",
873                  p_sys->p_context->pix_fmt );
874         p_dec->b_error = 1;
875     }
876 }
877
878 /*****************************************************************************
879  * ffmpeg_GetFrameBuf: callback used by ffmpeg to get a frame buffer.
880  *****************************************************************************
881  * It is used for direct rendering as well as to get the right PTS for each
882  * decoded picture (even in indirect rendering mode).
883  *****************************************************************************/
884 static void ffmpeg_SetFrameBufferPts( decoder_t *p_dec, AVFrame *p_ff_pic );
885
886 static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
887                                AVFrame *p_ff_pic )
888 {
889     decoder_t *p_dec = (decoder_t *)p_context->opaque;
890     decoder_sys_t *p_sys = p_dec->p_sys;
891     picture_t *p_pic;
892
893     /* Set picture PTS */
894     ffmpeg_SetFrameBufferPts( p_dec, p_ff_pic );
895
896     /* */
897     p_ff_pic->opaque = 0;
898
899     /* Not much to do in indirect rendering mode */
900     if( !p_sys->b_direct_rendering )
901     {
902         return avcodec_default_get_buffer( p_context, p_ff_pic );
903     }
904
905     /* Some codecs set pix_fmt only after the 1st frame has been decoded,
906      * so we need to check for direct rendering again. */
907
908     int i_width = p_sys->p_context->width;
909     int i_height = p_sys->p_context->height;
910     avcodec_align_dimensions( p_sys->p_context, &i_width, &i_height );
911
912     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS ||
913         p_sys->p_context->width % 16 || p_sys->p_context->height % 16 ||
914         /* We only pad picture up to 16 */
915         PAD(p_sys->p_context->width,16) < i_width || PAD(p_sys->p_context->height,16) < i_height ||
916         p_context->pix_fmt == PIX_FMT_PAL8 )
917     {
918         msg_Dbg( p_dec, "disabling direct rendering" );
919         p_sys->b_direct_rendering = false;
920         return avcodec_default_get_buffer( p_context, p_ff_pic );
921     }
922     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
923
924     /* Get a new picture */
925     //p_sys->p_vout->render.b_allow_modify_pics = 0;
926     p_pic = ffmpeg_NewPictBuf( p_dec, p_sys->p_context );
927     if( !p_pic )
928     {
929         p_sys->b_direct_rendering = false;
930         return avcodec_default_get_buffer( p_context, p_ff_pic );
931     }
932     p_sys->p_context->draw_horiz_band = NULL;
933
934     p_ff_pic->opaque = (void*)p_pic;
935     p_ff_pic->type = FF_BUFFER_TYPE_USER;
936     p_ff_pic->data[0] = p_pic->p[0].p_pixels;
937     p_ff_pic->data[1] = p_pic->p[1].p_pixels;
938     p_ff_pic->data[2] = p_pic->p[2].p_pixels;
939     p_ff_pic->data[3] = NULL; /* alpha channel but I'm not sure */
940
941     p_ff_pic->linesize[0] = p_pic->p[0].i_pitch;
942     p_ff_pic->linesize[1] = p_pic->p[1].i_pitch;
943     p_ff_pic->linesize[2] = p_pic->p[2].i_pitch;
944     p_ff_pic->linesize[3] = 0;
945
946     if( p_ff_pic->reference != 0 )
947     {
948         decoder_LinkPicture( p_dec, p_pic );
949     }
950
951     /* FIXME what is that, should give good value */
952     p_ff_pic->age = 256*256*256*64; // FIXME FIXME from ffmpeg
953
954     return 0;
955 }
956 static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *p_context, AVFrame *p_ff_pic )
957 {
958     decoder_t *p_dec = (decoder_t *)p_context->opaque;
959     int i_ret;
960
961     /* */
962     p_ff_pic->pts = AV_NOPTS_VALUE;
963
964     /* We always use default reget function, it works perfectly fine */
965     i_ret = avcodec_default_reget_buffer( p_context, p_ff_pic );
966
967     /* Set picture PTS if avcodec_default_reget_buffer didn't set it (through a
968      * ffmpeg_GetFrameBuf call) */
969     if( !i_ret && p_ff_pic->pts == AV_NOPTS_VALUE )
970         ffmpeg_SetFrameBufferPts( p_dec, p_ff_pic );
971
972     return i_ret;
973 }
974
975 static void ffmpeg_SetFrameBufferPts( decoder_t *p_dec, AVFrame *p_ff_pic )
976 {
977     decoder_sys_t *p_sys = p_dec->p_sys;
978
979     /* Set picture PTS */
980     if( p_sys->input_pts )
981     {
982         p_ff_pic->pts = p_sys->input_pts;
983     }
984     else if( p_sys->input_dts )
985     {
986         /* Some demuxers only set the dts so let's try to find a useful
987          * timestamp from this */
988         if( !p_sys->p_context->has_b_frames || !p_sys->b_has_b_frames ||
989             !p_ff_pic->reference || !p_sys->i_pts )
990         {
991             p_ff_pic->pts = p_sys->input_dts;
992         }
993         else
994         {
995             p_ff_pic->pts = 0;
996         }
997     }
998     else
999     {
1000         p_ff_pic->pts = 0;
1001     }
1002
1003     if( p_sys->i_pts ) /* make sure 1st frame has a pts > 0 */
1004     {
1005         p_sys->input_pts = p_sys->input_dts = 0;
1006     }
1007 }
1008
1009 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *p_context,
1010                                     AVFrame *p_ff_pic )
1011 {
1012     decoder_t *p_dec = (decoder_t *)p_context->opaque;
1013     picture_t *p_pic;
1014
1015     if( !p_ff_pic->opaque )
1016     {
1017         avcodec_default_release_buffer( p_context, p_ff_pic );
1018         return;
1019     }
1020
1021     p_pic = (picture_t*)p_ff_pic->opaque;
1022
1023     p_ff_pic->data[0] = NULL;
1024     p_ff_pic->data[1] = NULL;
1025     p_ff_pic->data[2] = NULL;
1026     p_ff_pic->data[3] = NULL;
1027
1028     if( p_ff_pic->reference != 0 )
1029     {
1030         decoder_UnlinkPicture( p_dec, p_pic );
1031     }
1032 }
1033
1034 static void ffmpeg_NextPts( decoder_t *p_dec )
1035 {
1036     decoder_sys_t *p_sys = p_dec->p_sys;
1037
1038     if( p_sys->i_pts <= 0 )
1039         return;
1040
1041     /* interpolate the next PTS */
1042     if( p_dec->fmt_in.video.i_frame_rate > 0 &&
1043         p_dec->fmt_in.video.i_frame_rate_base > 0 )
1044     {
1045         p_sys->i_pts += INT64_C(1000000) *
1046             (2 + p_sys->p_ff_pic->repeat_pict) *
1047             p_dec->fmt_in.video.i_frame_rate_base /
1048             (2 * p_dec->fmt_in.video.i_frame_rate);
1049     }
1050     else if( p_sys->p_context->time_base.den > 0 )
1051     {
1052         p_sys->i_pts += INT64_C(1000000) *
1053             (2 + p_sys->p_ff_pic->repeat_pict) *
1054             p_sys->p_context->time_base.num /
1055             (2 * p_sys->p_context->time_base.den);
1056     }
1057 }