]> git.sesse.net Git - vlc/blob - modules/codec/avcodec/video.c
Revert [f5060d12c31af094d9105143c88371487ff2c72c] (seek speed improvment)
[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         !p_sys->p_context->debug_mv )
296     {
297         /* Some codecs set pix_fmt only after the 1st frame has been decoded,
298          * so we need to do another check in ffmpeg_GetFrameBuf() */
299         p_sys->b_direct_rendering = true;
300     }
301
302     /* ffmpeg doesn't properly release old pictures when frames are skipped */
303     //if( p_sys->b_hurry_up ) p_sys->b_direct_rendering = false;
304     if( p_sys->b_direct_rendering )
305     {
306         msg_Dbg( p_dec, "using direct rendering" );
307         p_sys->p_context->flags |= CODEC_FLAG_EMU_EDGE;
308     }
309
310     /* Always use our get_buffer wrapper so we can calculate the
311      * PTS correctly */
312     p_sys->p_context->get_buffer = ffmpeg_GetFrameBuf;
313     p_sys->p_context->reget_buffer = ffmpeg_ReGetFrameBuf;
314     p_sys->p_context->release_buffer = ffmpeg_ReleaseFrameBuf;
315     p_sys->p_context->opaque = p_dec;
316
317     /* ***** misc init ***** */
318     p_sys->input_pts = p_sys->input_dts = 0;
319     p_sys->i_pts = 0;
320     p_sys->b_has_b_frames = false;
321     p_sys->b_first_frame = true;
322     p_sys->b_flush = false;
323     p_sys->i_late_frames = 0;
324     p_sys->i_buffer = 0;
325     p_sys->i_buffer_orig = 1;
326     p_sys->p_buffer_orig = p_sys->p_buffer = malloc( p_sys->i_buffer_orig );
327     if( !p_sys->p_buffer_orig )
328     {
329         free( p_sys );
330         return VLC_ENOMEM;
331     }
332
333     /* Set output properties */
334     p_dec->fmt_out.i_cat = VIDEO_ES;
335     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS )
336     {
337         /* we are doomed. but not really, because most codecs set their pix_fmt later on */
338         p_dec->fmt_out.i_codec = VLC_FOURCC('I','4','2','0');
339     }
340     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
341
342     /* Setup palette */
343     memset( &p_sys->palette, 0, sizeof(p_sys->palette) );
344     if( p_dec->fmt_in.video.p_palette )
345     {
346         p_sys->palette.palette_changed = 1;
347
348         for( int i = 0; i < __MIN( AVPALETTE_COUNT, p_dec->fmt_in.video.p_palette->i_entries ); i++ )
349         {
350             union {
351                 uint32_t u;
352                 uint8_t a[4];
353             } c;
354             c.a[0] = p_dec->fmt_in.video.p_palette->palette[i][0];
355             c.a[1] = p_dec->fmt_in.video.p_palette->palette[i][1];
356             c.a[2] = p_dec->fmt_in.video.p_palette->palette[i][2];
357             c.a[3] = p_dec->fmt_in.video.p_palette->palette[i][3];
358
359             p_sys->palette.palette[i] = c.u;
360         }
361         p_sys->p_context->palctrl = &p_sys->palette;
362
363         p_dec->fmt_out.video.p_palette = malloc( sizeof(video_palette_t) );
364         if( p_dec->fmt_out.video.p_palette )
365             *p_dec->fmt_out.video.p_palette = *p_dec->fmt_in.video.p_palette;
366     }
367     else if( p_sys->i_codec_id != CODEC_ID_MSVIDEO1 && p_sys->i_codec_id != CODEC_ID_CINEPAK )
368     {
369         p_sys->p_context->palctrl = &p_sys->palette;
370     }
371
372     /* ***** init this codec with special data ***** */
373     ffmpeg_InitCodec( p_dec );
374
375     /* ***** Open the codec ***** */
376     if( ffmpeg_OpenCodec( p_dec ) < 0 )
377     {
378         msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
379         free( p_sys->p_buffer_orig );
380         free( p_sys );
381         return VLC_EGENERIC;
382     }
383
384     return VLC_SUCCESS;
385 }
386
387 /*****************************************************************************
388  * DecodeVideo: Called to decode one or more frames
389  *****************************************************************************/
390 picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
391 {
392     decoder_sys_t *p_sys = p_dec->p_sys;
393     int b_drawpicture;
394     int b_null_size = false;
395     block_t *p_block;
396
397     if( !pp_block || !*pp_block )
398         return NULL;
399
400     if( !p_sys->p_context->extradata_size && p_dec->fmt_in.i_extra )
401     {
402         ffmpeg_InitCodec( p_dec );
403         if( p_sys->b_delayed_open )
404         {
405             if( ffmpeg_OpenCodec( p_dec ) )
406                 msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
407         }
408     }
409
410     p_block = *pp_block;
411     if( p_sys->b_delayed_open )
412     {
413         block_Release( p_block );
414         return NULL;
415     }
416
417     if( p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) )
418     {
419         p_sys->i_buffer = 0;
420         p_sys->i_pts = 0; /* To make sure we recover properly */
421
422         p_sys->input_pts = p_sys->input_dts = 0;
423         p_sys->i_late_frames = 0;
424
425         block_Release( p_block );
426
427         //if( p_block->i_flags & BLOCK_FLAG_CORRUPTED )
428             //avcodec_flush_buffers( p_sys->p_context );
429         return NULL;
430     }
431
432     if( p_block->i_flags & BLOCK_FLAG_PREROLL )
433     {
434         /* Do not care about late frames when prerolling
435          * TODO avoid decoding of non reference frame
436          * (ie all B except for H264 where it depends only on nal_ref_idc) */
437         p_sys->i_late_frames = 0;
438     }
439
440     if( !p_dec->b_pace_control && (p_sys->i_late_frames > 0) &&
441         (mdate() - p_sys->i_late_frames_start > INT64_C(5000000)) )
442     {
443         if( p_sys->i_pts )
444         {
445             msg_Err( p_dec, "more than 5 seconds of late video -> "
446                      "dropping frame (computer too slow ?)" );
447             p_sys->i_pts = 0; /* To make sure we recover properly */
448         }
449         block_Release( p_block );
450         p_sys->i_late_frames--;
451         return NULL;
452     }
453
454     if( p_block->i_pts > 0 || p_block->i_dts > 0 )
455     {
456         p_sys->input_pts = p_block->i_pts;
457         p_sys->input_dts = p_block->i_dts;
458
459         /* Make sure we don't reuse the same timestamps twice */
460         p_block->i_pts = p_block->i_dts = 0;
461     }
462
463     /* A good idea could be to decode all I pictures and see for the other */
464     if( !p_dec->b_pace_control &&
465         p_sys->b_hurry_up &&
466         (p_sys->i_late_frames > 4) )
467     {
468         b_drawpicture = 0;
469         if( p_sys->i_late_frames < 12 )
470         {
471             p_sys->p_context->skip_frame =
472                     (p_sys->i_skip_frame <= AVDISCARD_BIDIR) ?
473                     AVDISCARD_BIDIR : p_sys->i_skip_frame;
474         }
475         else
476         {
477             /* picture too late, won't decode
478              * but break picture until a new I, and for mpeg4 ...*/
479             p_sys->i_late_frames--; /* needed else it will never be decrease */
480             block_Release( p_block );
481             p_sys->i_buffer = 0;
482             return NULL;
483         }
484     }
485     else
486     {
487         if( p_sys->b_hurry_up )
488             p_sys->p_context->skip_frame = p_sys->i_skip_frame;
489         if( !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
490             b_drawpicture = 1;
491         else
492             b_drawpicture = 0;
493     }
494
495     if( p_sys->p_context->width <= 0 || p_sys->p_context->height <= 0 )
496     {
497         if( p_sys->b_hurry_up )
498             p_sys->p_context->skip_frame = p_sys->i_skip_frame;
499         b_null_size = true;
500     }
501     else if( !b_drawpicture )
502     {
503         /* It creates broken picture
504          * FIXME either our parser or ffmpeg is broken */
505 #if 0
506         if( p_sys->b_hurry_up )
507             p_sys->p_context->skip_frame = __MAX( p_sys->p_context->skip_frame,
508                                                   AVDISCARD_NONREF );
509 #endif
510     }
511
512     /*
513      * Do the actual decoding now
514      */
515
516     /* Don't forget that ffmpeg requires a little more bytes
517      * that the real frame size */
518     if( p_block->i_buffer > 0 )
519     {
520         p_sys->b_flush = ( p_block->i_flags & BLOCK_FLAG_END_OF_SEQUENCE ) != 0;
521
522         p_sys->i_buffer = p_block->i_buffer;
523         if( p_sys->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE >
524             p_sys->i_buffer_orig )
525         {
526             free( p_sys->p_buffer_orig );
527             p_sys->i_buffer_orig =
528                 p_block->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE;
529             p_sys->p_buffer_orig = malloc( p_sys->i_buffer_orig );
530         }
531         p_sys->p_buffer = p_sys->p_buffer_orig;
532         p_sys->i_buffer = p_block->i_buffer;
533         if( !p_sys->p_buffer )
534         {
535             block_Release( p_block );
536             return NULL;
537         }
538         vlc_memcpy( p_sys->p_buffer, p_block->p_buffer, p_block->i_buffer );
539         memset( p_sys->p_buffer + p_block->i_buffer, 0,
540                 FF_INPUT_BUFFER_PADDING_SIZE );
541
542         p_block->i_buffer = 0;
543     }
544
545     while( p_sys->i_buffer > 0 || p_sys->b_flush )
546     {
547         int i_used, b_gotpicture;
548         picture_t *p_pic;
549
550         i_used = avcodec_decode_video( p_sys->p_context, p_sys->p_ff_pic,
551                                        &b_gotpicture,
552                                        p_sys->i_buffer <= 0 && p_sys->b_flush ? NULL : (uint8_t*)p_sys->p_buffer, p_sys->i_buffer );
553
554         if( b_null_size && p_sys->p_context->width > 0 &&
555             p_sys->p_context->height > 0 &&
556             !p_sys->b_flush )
557         {
558             /* Reparse it to not drop the I frame */
559             b_null_size = false;
560             if( p_sys->b_hurry_up )
561                 p_sys->p_context->skip_frame = p_sys->i_skip_frame;
562             i_used = avcodec_decode_video( p_sys->p_context, p_sys->p_ff_pic,
563                                            &b_gotpicture,
564                                            (uint8_t*)p_sys->p_buffer, p_sys->i_buffer );
565         }
566
567         if( p_sys->b_flush )
568             p_sys->b_first_frame = true;
569
570         if( p_sys->i_buffer <= 0 )
571             p_sys->b_flush = false;
572
573         if( i_used < 0 )
574         {
575             if( b_drawpicture )
576                 msg_Warn( p_dec, "cannot decode one frame (%d bytes)",
577                           p_sys->i_buffer );
578             block_Release( p_block );
579             return NULL;
580         }
581         else if( i_used > p_sys->i_buffer )
582         {
583             i_used = p_sys->i_buffer;
584         }
585
586         /* Consumed bytes */
587         p_sys->i_buffer -= i_used;
588         p_sys->p_buffer += i_used;
589
590         /* Nothing to display */
591         if( !b_gotpicture )
592         {
593             if( i_used == 0 ) break;
594             continue;
595         }
596
597         /* Set the PTS */
598         if( p_sys->p_ff_pic->pts )
599             p_sys->i_pts = p_sys->p_ff_pic->pts;
600
601         /* Update frame late count (except when doing preroll) */
602         mtime_t i_display_date = 0;
603         if( !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
604             i_display_date = decoder_GetDisplayDate( p_dec, p_sys->i_pts );
605
606         if( i_display_date > 0 && i_display_date <= mdate() )
607         {
608             p_sys->i_late_frames++;
609             if( p_sys->i_late_frames == 1 )
610                 p_sys->i_late_frames_start = mdate();
611         }
612         else
613         {
614             p_sys->i_late_frames = 0;
615         }
616
617         if( !b_drawpicture || !p_sys->p_ff_pic->linesize[0] )
618         {
619             /* Do not display the picture */
620             p_pic = (picture_t *)p_sys->p_ff_pic->opaque;
621             if( !b_drawpicture && p_pic )
622                 decoder_DeletePicture( p_dec, p_pic );
623
624             ffmpeg_NextPts( p_dec );
625             continue;
626         }
627
628         if( !p_sys->p_ff_pic->opaque )
629         {
630             /* Get a new picture */
631             p_pic = ffmpeg_NewPictBuf( p_dec, p_sys->p_context );
632             if( !p_pic )
633             {
634                 block_Release( p_block );
635                 return NULL;
636             }
637
638             /* Fill p_picture_t from AVVideoFrame and do chroma conversion
639              * if needed */
640             ffmpeg_CopyPicture( p_dec, p_pic, p_sys->p_ff_pic );
641         }
642         else
643         {
644             p_pic = (picture_t *)p_sys->p_ff_pic->opaque;
645         }
646
647         /* Sanity check (seems to be needed for some streams) */
648         if( p_sys->p_ff_pic->pict_type == FF_B_TYPE )
649         {
650             p_sys->b_has_b_frames = true;
651         }
652
653         if( !p_dec->fmt_in.video.i_aspect )
654         {
655             /* Fetch again the aspect ratio in case it changed */
656             p_dec->fmt_out.video.i_aspect =
657                 VOUT_ASPECT_FACTOR
658                     * ( av_q2d(p_sys->p_context->sample_aspect_ratio)
659                     * p_sys->p_context->width / p_sys->p_context->height );
660             p_dec->fmt_out.video.i_sar_num
661                 = p_sys->p_context->sample_aspect_ratio.num;
662             p_dec->fmt_out.video.i_sar_den
663                 = p_sys->p_context->sample_aspect_ratio.den;
664
665             if( p_dec->fmt_out.video.i_aspect == 0 )
666             {
667                 p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR
668                     * p_sys->p_context->width / p_sys->p_context->height;
669             }
670         }
671
672         /* Send decoded frame to vout */
673         if( p_sys->i_pts )
674         {
675             p_pic->date = p_sys->i_pts;
676
677             ffmpeg_NextPts( p_dec );
678
679             if( p_sys->b_first_frame )
680             {
681                 /* Hack to force display of still pictures */
682                 p_sys->b_first_frame = false;
683                 p_pic->b_force = true;
684             }
685
686             p_pic->i_nb_fields = 2 + p_sys->p_ff_pic->repeat_pict;
687             p_pic->b_progressive = !p_sys->p_ff_pic->interlaced_frame;
688             p_pic->b_top_field_first = p_sys->p_ff_pic->top_field_first;
689
690             p_pic->i_qstride = p_sys->p_ff_pic->qstride;
691             int i_mb_h = ( p_pic->format.i_height + 15 ) / 16;
692             p_pic->p_q = malloc( p_pic->i_qstride * i_mb_h );
693             memcpy( p_pic->p_q, p_sys->p_ff_pic->qscale_table,
694                     p_pic->i_qstride * i_mb_h );
695             switch( p_sys->p_ff_pic->qscale_type )
696             {
697                 case FF_QSCALE_TYPE_MPEG1:
698                     p_pic->i_qtype = QTYPE_MPEG1;
699                     break;
700                 case FF_QSCALE_TYPE_MPEG2:
701                     p_pic->i_qtype = QTYPE_MPEG2;
702                     break;
703                 case FF_QSCALE_TYPE_H264:
704                     p_pic->i_qtype = QTYPE_H264;
705                     break;
706             }
707
708             return p_pic;
709         }
710         else
711         {
712             decoder_DeletePicture( p_dec, p_pic );
713         }
714     }
715
716     block_Release( p_block );
717     return NULL;
718 }
719
720 /*****************************************************************************
721  * EndVideo: decoder destruction
722  *****************************************************************************
723  * This function is called when the thread ends after a successful
724  * initialization.
725  *****************************************************************************/
726 void EndVideoDec( decoder_t *p_dec )
727 {
728     decoder_sys_t *p_sys = p_dec->p_sys;
729
730     if( p_sys->p_ff_pic ) av_free( p_sys->p_ff_pic );
731     free( p_sys->p_buffer_orig );
732 }
733
734 /*****************************************************************************
735  * ffmpeg_InitCodec: setup codec extra initialization data for ffmpeg
736  *****************************************************************************/
737 static void ffmpeg_InitCodec( decoder_t *p_dec )
738 {
739     decoder_sys_t *p_sys = p_dec->p_sys;
740     int i_size = p_dec->fmt_in.i_extra;
741
742     if( !i_size ) return;
743
744     if( p_sys->i_codec_id == CODEC_ID_SVQ3 )
745     {
746         uint8_t *p;
747
748         p_sys->p_context->extradata_size = i_size + 12;
749         p = p_sys->p_context->extradata  =
750             malloc( p_sys->p_context->extradata_size );
751         if( !p )
752             return;
753
754         memcpy( &p[0],  "SVQ3", 4 );
755         memset( &p[4], 0, 8 );
756         memcpy( &p[12], p_dec->fmt_in.p_extra, i_size );
757
758         /* Now remove all atoms before the SMI one */
759         if( p_sys->p_context->extradata_size > 0x5a &&
760             strncmp( (char*)&p[0x56], "SMI ", 4 ) )
761         {
762             uint8_t *psz = &p[0x52];
763
764             while( psz < &p[p_sys->p_context->extradata_size - 8] )
765             {
766                 int i_size = GetDWBE( psz );
767                 if( i_size <= 1 )
768                 {
769                     /* FIXME handle 1 as long size */
770                     break;
771                 }
772                 if( !strncmp( (char*)&psz[4], "SMI ", 4 ) )
773                 {
774                     memmove( &p[0x52], psz,
775                              &p[p_sys->p_context->extradata_size] - psz );
776                     break;
777                 }
778
779                 psz += i_size;
780             }
781         }
782     }
783     else
784     {
785         p_sys->p_context->extradata_size = i_size;
786         p_sys->p_context->extradata =
787             malloc( i_size + FF_INPUT_BUFFER_PADDING_SIZE );
788         if( p_sys->p_context->extradata )
789         {
790             memcpy( p_sys->p_context->extradata,
791                     p_dec->fmt_in.p_extra, i_size );
792             memset( &((uint8_t*)p_sys->p_context->extradata)[i_size],
793                     0, FF_INPUT_BUFFER_PADDING_SIZE );
794         }
795     }
796 }
797
798 /*****************************************************************************
799  * ffmpeg_OpenCodec:
800  *****************************************************************************/
801 static int ffmpeg_OpenCodec( decoder_t *p_dec )
802 {
803     decoder_sys_t *p_sys = p_dec->p_sys;
804
805     if( p_sys->p_context->extradata_size <= 0 )
806     {
807         if( p_sys->i_codec_id == CODEC_ID_VC1 ||
808             p_sys->i_codec_id == CODEC_ID_VORBIS ||
809             p_sys->i_codec_id == CODEC_ID_THEORA )
810         {
811             msg_Warn( p_dec, "waiting for extra data for codec %s",
812                       p_sys->psz_namecodec );
813             return 1;
814         }
815     }
816     p_sys->p_context->width  = p_dec->fmt_in.video.i_width;
817     p_sys->p_context->height = p_dec->fmt_in.video.i_height;
818 #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
819     p_sys->p_context->bits_per_sample = p_dec->fmt_in.video.i_bits_per_pixel;
820 #else
821     p_sys->p_context->bits_per_coded_sample = p_dec->fmt_in.video.i_bits_per_pixel;
822 #endif
823
824     int ret;
825     vlc_avcodec_lock();
826     ret = avcodec_open( p_sys->p_context, p_sys->p_codec );
827     vlc_avcodec_unlock();
828     if( ret < 0 )
829         return VLC_EGENERIC;
830     msg_Dbg( p_dec, "ffmpeg codec (%s) started", p_sys->psz_namecodec );
831
832     p_sys->b_delayed_open = false;
833
834     return VLC_SUCCESS;
835 }
836 /*****************************************************************************
837  * ffmpeg_CopyPicture: copy a picture from ffmpeg internal buffers to a
838  *                     picture_t structure (when not in direct rendering mode).
839  *****************************************************************************/
840 static void ffmpeg_CopyPicture( decoder_t *p_dec,
841                                 picture_t *p_pic, AVFrame *p_ff_pic )
842 {
843     decoder_sys_t *p_sys = p_dec->p_sys;
844
845     if( TestFfmpegChroma( p_sys->p_context->pix_fmt, -1 ) == VLC_SUCCESS )
846     {
847         int i_plane, i_size, i_line;
848         uint8_t *p_dst, *p_src;
849         int i_src_stride, i_dst_stride;
850
851         for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
852         {
853             p_src  = p_ff_pic->data[i_plane];
854             p_dst = p_pic->p[i_plane].p_pixels;
855             i_src_stride = p_ff_pic->linesize[i_plane];
856             i_dst_stride = p_pic->p[i_plane].i_pitch;
857
858             i_size = __MIN( i_src_stride, i_dst_stride );
859             for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines;
860                  i_line++ )
861             {
862                 vlc_memcpy( p_dst, p_src, i_size );
863                 p_src += i_src_stride;
864                 p_dst += i_dst_stride;
865             }
866         }
867     }
868     else
869     {
870         msg_Err( p_dec, "don't know how to convert chroma %i",
871                  p_sys->p_context->pix_fmt );
872         p_dec->b_error = 1;
873     }
874 }
875
876 /*****************************************************************************
877  * ffmpeg_GetFrameBuf: callback used by ffmpeg to get a frame buffer.
878  *****************************************************************************
879  * It is used for direct rendering as well as to get the right PTS for each
880  * decoded picture (even in indirect rendering mode).
881  *****************************************************************************/
882 static void ffmpeg_SetFrameBufferPts( decoder_t *p_dec, AVFrame *p_ff_pic );
883
884 static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
885                                AVFrame *p_ff_pic )
886 {
887     decoder_t *p_dec = (decoder_t *)p_context->opaque;
888     decoder_sys_t *p_sys = p_dec->p_sys;
889     picture_t *p_pic;
890
891     /* Set picture PTS */
892     ffmpeg_SetFrameBufferPts( p_dec, p_ff_pic );
893
894     /* */
895     p_ff_pic->opaque = 0;
896
897     /* Not much to do in indirect rendering mode */
898     if( !p_sys->b_direct_rendering )
899     {
900         return avcodec_default_get_buffer( p_context, p_ff_pic );
901     }
902
903     /* Some codecs set pix_fmt only after the 1st frame has been decoded,
904      * so we need to check for direct rendering again. */
905
906     int i_width = p_sys->p_context->width;
907     int i_height = p_sys->p_context->height;
908     avcodec_align_dimensions( p_sys->p_context, &i_width, &i_height );
909
910     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS ||
911         p_sys->p_context->width % 16 || p_sys->p_context->height % 16 ||
912         /* We only pad picture up to 16 */
913         PAD(p_sys->p_context->width,16) < i_width || PAD(p_sys->p_context->height,16) < i_height ||
914         p_context->pix_fmt == PIX_FMT_PAL8 )
915     {
916         msg_Dbg( p_dec, "disabling direct rendering" );
917         p_sys->b_direct_rendering = false;
918         return avcodec_default_get_buffer( p_context, p_ff_pic );
919     }
920     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
921
922     /* Get a new picture */
923     //p_sys->p_vout->render.b_allow_modify_pics = 0;
924     p_pic = ffmpeg_NewPictBuf( p_dec, p_sys->p_context );
925     if( !p_pic )
926     {
927         p_sys->b_direct_rendering = false;
928         return avcodec_default_get_buffer( p_context, p_ff_pic );
929     }
930     p_sys->p_context->draw_horiz_band = NULL;
931
932     p_ff_pic->opaque = (void*)p_pic;
933     p_ff_pic->type = FF_BUFFER_TYPE_USER;
934     p_ff_pic->data[0] = p_pic->p[0].p_pixels;
935     p_ff_pic->data[1] = p_pic->p[1].p_pixels;
936     p_ff_pic->data[2] = p_pic->p[2].p_pixels;
937     p_ff_pic->data[3] = NULL; /* alpha channel but I'm not sure */
938
939     p_ff_pic->linesize[0] = p_pic->p[0].i_pitch;
940     p_ff_pic->linesize[1] = p_pic->p[1].i_pitch;
941     p_ff_pic->linesize[2] = p_pic->p[2].i_pitch;
942     p_ff_pic->linesize[3] = 0;
943
944     if( p_ff_pic->reference != 0 )
945     {
946         decoder_LinkPicture( p_dec, p_pic );
947     }
948
949     /* FIXME what is that, should give good value */
950     p_ff_pic->age = 256*256*256*64; // FIXME FIXME from ffmpeg
951
952     return 0;
953 }
954 static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *p_context, AVFrame *p_ff_pic )
955 {
956     decoder_t *p_dec = (decoder_t *)p_context->opaque;
957     int i_ret;
958
959     /* */
960     p_ff_pic->pts = AV_NOPTS_VALUE;
961
962     /* We always use default reget function, it works perfectly fine */
963     i_ret = avcodec_default_reget_buffer( p_context, p_ff_pic );
964
965     /* Set picture PTS if avcodec_default_reget_buffer didn't set it (through a
966      * ffmpeg_GetFrameBuf call) */
967     if( !i_ret && p_ff_pic->pts == AV_NOPTS_VALUE )
968         ffmpeg_SetFrameBufferPts( p_dec, p_ff_pic );
969
970     return i_ret;
971 }
972
973 static void ffmpeg_SetFrameBufferPts( decoder_t *p_dec, AVFrame *p_ff_pic )
974 {
975     decoder_sys_t *p_sys = p_dec->p_sys;
976
977     /* Set picture PTS */
978     if( p_sys->input_pts )
979     {
980         p_ff_pic->pts = p_sys->input_pts;
981     }
982     else if( p_sys->input_dts )
983     {
984         /* Some demuxers only set the dts so let's try to find a useful
985          * timestamp from this */
986         if( !p_sys->p_context->has_b_frames || !p_sys->b_has_b_frames ||
987             !p_ff_pic->reference || !p_sys->i_pts )
988         {
989             p_ff_pic->pts = p_sys->input_dts;
990         }
991         else
992         {
993             p_ff_pic->pts = 0;
994         }
995     }
996     else
997     {
998         p_ff_pic->pts = 0;
999     }
1000
1001     if( p_sys->i_pts ) /* make sure 1st frame has a pts > 0 */
1002     {
1003         p_sys->input_pts = p_sys->input_dts = 0;
1004     }
1005 }
1006
1007 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *p_context,
1008                                     AVFrame *p_ff_pic )
1009 {
1010     decoder_t *p_dec = (decoder_t *)p_context->opaque;
1011     picture_t *p_pic;
1012
1013     if( !p_ff_pic->opaque )
1014     {
1015         avcodec_default_release_buffer( p_context, p_ff_pic );
1016         return;
1017     }
1018
1019     p_pic = (picture_t*)p_ff_pic->opaque;
1020
1021     p_ff_pic->data[0] = NULL;
1022     p_ff_pic->data[1] = NULL;
1023     p_ff_pic->data[2] = NULL;
1024     p_ff_pic->data[3] = NULL;
1025
1026     if( p_ff_pic->reference != 0 )
1027     {
1028         decoder_UnlinkPicture( p_dec, p_pic );
1029     }
1030 }
1031
1032 static void ffmpeg_NextPts( decoder_t *p_dec )
1033 {
1034     decoder_sys_t *p_sys = p_dec->p_sys;
1035
1036     if( p_sys->i_pts <= 0 )
1037         return;
1038
1039     /* interpolate the next PTS */
1040     if( p_dec->fmt_in.video.i_frame_rate > 0 &&
1041         p_dec->fmt_in.video.i_frame_rate_base > 0 )
1042     {
1043         p_sys->i_pts += INT64_C(1000000) *
1044             (2 + p_sys->p_ff_pic->repeat_pict) *
1045             p_dec->fmt_in.video.i_frame_rate_base /
1046             (2 * p_dec->fmt_in.video.i_frame_rate);
1047     }
1048     else if( p_sys->p_context->time_base.den > 0 )
1049     {
1050         p_sys->i_pts += INT64_C(1000000) *
1051             (2 + p_sys->p_ff_pic->repeat_pict) *
1052             p_sys->p_context->time_base.num /
1053             (2 * p_sys->p_context->time_base.den);
1054     }
1055 }