]> git.sesse.net Git - vlc/blob - modules/codec/avcodec/video.c
avcodec: remove support for old versions
[vlc] / modules / codec / avcodec / video.c
1 /*****************************************************************************
2  * video.c: video decoder using the libavcodec library
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VLC authors and VideoLAN
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 it
11  * under the terms of the GNU Lesser General Public License as published by
12  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * along with this program; if not, write to the Free Software Foundation,
22  * 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_avcodec.h>
35 #include <vlc_cpu.h>
36 #include <vlc_modules.h>
37 #include <assert.h>
38
39 #include <libavcodec/avcodec.h>
40 #include <libavutil/mem.h>
41 #include <libavutil/pixdesc.h>
42
43 #include "avcodec.h"
44 #include "va.h"
45
46 /*****************************************************************************
47  * decoder_sys_t : decoder descriptor
48  *****************************************************************************/
49 struct decoder_sys_t
50 {
51     AVCODEC_COMMON_MEMBERS
52
53     /* Video decoder specific part */
54     mtime_t i_pts;
55
56     AVFrame          *p_ff_pic;
57
58     /* for frame skipping algo */
59     bool b_hurry_up;
60     enum AVDiscard i_skip_frame;
61     enum AVDiscard i_skip_idct;
62
63     /* how many decoded frames are late */
64     int     i_late_frames;
65     mtime_t i_late_frames_start;
66
67     /* for direct rendering */
68     bool b_direct_rendering;
69     int  i_direct_rendering_used;
70
71     bool b_has_b_frames;
72
73     /* Hack to force display of still pictures */
74     bool b_first_frame;
75
76
77     /* */
78     //AVPaletteControl palette;
79 #warning FIXME
80
81     /* */
82     bool b_flush;
83
84     /* VA API */
85     vlc_va_t *p_va;
86
87     vlc_sem_t sem_mt;
88 };
89
90 #ifdef HAVE_AVCODEC_MT
91 #   define wait_mt(s) vlc_sem_wait( &s->sem_mt )
92 #   define post_mt(s) vlc_sem_post( &s->sem_mt )
93 #else
94 #   define wait_mt(s)
95 #   define post_mt(s)
96 #endif
97
98 /*****************************************************************************
99  * Local prototypes
100  *****************************************************************************/
101 static void ffmpeg_InitCodec      ( decoder_t * );
102 static void ffmpeg_CopyPicture    ( decoder_t *, picture_t *, AVFrame * );
103 static int  ffmpeg_GetFrameBuf    ( struct AVCodecContext *, AVFrame * );
104 static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *, AVFrame * );
105 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *, AVFrame * );
106 static enum PixelFormat ffmpeg_GetFormat( AVCodecContext *,
107                                           const enum PixelFormat * );
108 static void vlc_va_Delete( vlc_va_t * );
109
110 static uint32_t ffmpeg_CodecTag( vlc_fourcc_t fcc )
111 {
112     uint8_t *p = (uint8_t*)&fcc;
113     return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
114 }
115
116 /*****************************************************************************
117  * Local Functions
118  *****************************************************************************/
119
120 /* Returns a new picture buffer */
121 static inline picture_t *ffmpeg_NewPictBuf( decoder_t *p_dec,
122                                             AVCodecContext *p_context )
123 {
124     decoder_sys_t *p_sys = p_dec->p_sys;
125
126     p_dec->fmt_out.video.i_width = p_context->width;
127     p_dec->fmt_out.video.i_height = p_context->height;
128
129     if( !p_context->width || !p_context->height )
130     {
131         return NULL; /* invalid display size */
132     }
133
134     if( !p_sys->p_va && GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) )
135     {
136         /* we are doomed, but not really, because most codecs set their pix_fmt
137          * much later
138          * FIXME does it make sense here ? */
139         p_dec->fmt_out.video.i_chroma = VLC_CODEC_I420;
140     }
141     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
142
143     /* If an aspect-ratio was specified in the input format then force it */
144     if( p_dec->fmt_in.video.i_sar_num > 0 && p_dec->fmt_in.video.i_sar_den > 0 )
145     {
146         p_dec->fmt_out.video.i_sar_num = p_dec->fmt_in.video.i_sar_num;
147         p_dec->fmt_out.video.i_sar_den = p_dec->fmt_in.video.i_sar_den;
148     }
149     else
150     {
151         p_dec->fmt_out.video.i_sar_num = p_context->sample_aspect_ratio.num;
152         p_dec->fmt_out.video.i_sar_den = p_context->sample_aspect_ratio.den;
153
154         if( !p_dec->fmt_out.video.i_sar_num || !p_dec->fmt_out.video.i_sar_den )
155         {
156             p_dec->fmt_out.video.i_sar_num = 1;
157             p_dec->fmt_out.video.i_sar_den = 1;
158         }
159     }
160
161     if( p_dec->fmt_in.video.i_frame_rate > 0 &&
162         p_dec->fmt_in.video.i_frame_rate_base > 0 )
163     {
164         p_dec->fmt_out.video.i_frame_rate =
165             p_dec->fmt_in.video.i_frame_rate;
166         p_dec->fmt_out.video.i_frame_rate_base =
167             p_dec->fmt_in.video.i_frame_rate_base;
168     }
169     else if( p_context->time_base.num > 0 && p_context->time_base.den > 0 )
170     {
171         p_dec->fmt_out.video.i_frame_rate = p_context->time_base.den;
172         p_dec->fmt_out.video.i_frame_rate_base = p_context->time_base.num;
173     }
174
175     return decoder_NewPicture( p_dec );
176 }
177
178 /*****************************************************************************
179  * InitVideo: initialize the video decoder
180  *****************************************************************************
181  * the ffmpeg codec will be opened, some memory allocated. The vout is not yet
182  * opened (done after the first decoded frame).
183  *****************************************************************************/
184 int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
185                       AVCodec *p_codec, int i_codec_id, const char *psz_namecodec )
186 {
187     decoder_sys_t *p_sys;
188     int i_val;
189
190     /* Allocate the memory needed to store the decoder's structure */
191     if( ( p_dec->p_sys = p_sys = calloc( 1, sizeof(decoder_sys_t) ) ) == NULL )
192         return VLC_ENOMEM;
193
194     p_codec->type = AVMEDIA_TYPE_VIDEO;
195     p_context->codec_type = AVMEDIA_TYPE_VIDEO;
196     p_context->codec_id = i_codec_id;
197     p_sys->p_context = p_context;
198     p_sys->p_codec = p_codec;
199     p_sys->i_codec_id = i_codec_id;
200     p_sys->psz_namecodec = psz_namecodec;
201     p_sys->p_ff_pic = avcodec_alloc_frame();
202     p_sys->b_delayed_open = true;
203     p_sys->p_va = NULL;
204     vlc_sem_init( &p_sys->sem_mt, 0 );
205
206     /* ***** Fill p_context with init values ***** */
207     p_sys->p_context->codec_tag = ffmpeg_CodecTag( p_dec->fmt_in.i_original_fourcc ?: p_dec->fmt_in.i_codec );
208
209     /*  ***** Get configuration of ffmpeg plugin ***** */
210     p_sys->p_context->workaround_bugs =
211         var_InheritInteger( p_dec, "avcodec-workaround-bugs" );
212     p_sys->p_context->err_recognition =
213         var_InheritInteger( p_dec, "avcodec-error-resilience" );
214
215     if( var_CreateGetBool( p_dec, "grayscale" ) )
216         p_sys->p_context->flags |= CODEC_FLAG_GRAY;
217
218     i_val = var_CreateGetInteger( p_dec, "avcodec-vismv" );
219     if( i_val ) p_sys->p_context->debug_mv = i_val;
220
221     i_val = var_CreateGetInteger( p_dec, "avcodec-skiploopfilter" );
222     if( i_val >= 4 ) p_sys->p_context->skip_loop_filter = AVDISCARD_ALL;
223     else if( i_val == 3 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONKEY;
224     else if( i_val == 2 ) p_sys->p_context->skip_loop_filter = AVDISCARD_BIDIR;
225     else if( i_val == 1 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONREF;
226
227     if( var_CreateGetBool( p_dec, "avcodec-fast" ) )
228         p_sys->p_context->flags2 |= CODEC_FLAG2_FAST;
229
230 #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 54, 41, 0 )
231     if( var_InheritBool( p_dec, "avcodec-ignorecrop" ) )
232         p_sys->p_context->flags2 |= CODEC_FLAG2_IGNORE_CROP;
233 #endif
234
235     /* ***** libavcodec frame skipping ***** */
236     p_sys->b_hurry_up = var_CreateGetBool( p_dec, "avcodec-hurry-up" );
237
238     switch( var_CreateGetInteger( p_dec, "avcodec-skip-frame" ) )
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_NONREF;
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     switch( var_CreateGetInteger( p_dec, "avcodec-skip-idct" ) )
262     {
263         case -1:
264             p_sys->p_context->skip_idct = AVDISCARD_NONE;
265             break;
266         case 0:
267             p_sys->p_context->skip_idct = AVDISCARD_DEFAULT;
268             break;
269         case 1:
270             p_sys->p_context->skip_idct = AVDISCARD_NONREF;
271             break;
272         case 2:
273             p_sys->p_context->skip_idct = AVDISCARD_NONKEY;
274             break;
275         case 3:
276             p_sys->p_context->skip_idct = AVDISCARD_ALL;
277             break;
278         default:
279             p_sys->p_context->skip_idct = AVDISCARD_NONE;
280             break;
281     }
282     p_sys->i_skip_idct = p_sys->p_context->skip_idct;
283
284     /* ***** libavcodec direct rendering ***** */
285     p_sys->b_direct_rendering = false;
286     p_sys->i_direct_rendering_used = -1;
287     if( var_CreateGetBool( p_dec, "avcodec-dr" ) &&
288        (p_sys->p_codec->capabilities & CODEC_CAP_DR1) &&
289         /* No idea why ... but this fixes flickering on some TSCC streams */
290         p_sys->i_codec_id != CODEC_ID_TSCC && p_sys->i_codec_id != CODEC_ID_CSCD &&
291         p_sys->i_codec_id != CODEC_ID_CINEPAK &&
292         !p_sys->p_context->debug_mv )
293     {
294         /* Some codecs set pix_fmt only after the 1st frame has been decoded,
295          * so we need to do another check in ffmpeg_GetFrameBuf() */
296         p_sys->b_direct_rendering = true;
297     }
298
299     /* libavcodec doesn't properly release old pictures when frames are skipped */
300     //if( p_sys->b_hurry_up ) p_sys->b_direct_rendering = false;
301     if( p_sys->b_direct_rendering )
302     {
303         msg_Dbg( p_dec, "trying to use direct rendering" );
304         p_sys->p_context->flags |= CODEC_FLAG_EMU_EDGE;
305     }
306     else
307     {
308         msg_Dbg( p_dec, "direct rendering is disabled" );
309     }
310
311     /* Always use our get_buffer wrapper so we can calculate the
312      * PTS correctly */
313     p_sys->p_context->get_buffer = ffmpeg_GetFrameBuf;
314     p_sys->p_context->reget_buffer = ffmpeg_ReGetFrameBuf;
315     p_sys->p_context->release_buffer = ffmpeg_ReleaseFrameBuf;
316     p_sys->p_context->opaque = p_dec;
317
318 #ifdef HAVE_AVCODEC_MT
319     int i_thread_count = var_InheritInteger( p_dec, "avcodec-threads" );
320     if( i_thread_count <= 0 )
321     {
322         i_thread_count = vlc_GetCPUCount();
323         if( i_thread_count > 1 )
324             i_thread_count++;
325
326         //FIXME: take in count the decoding time
327         i_thread_count = __MIN( i_thread_count, 4 );
328     }
329     i_thread_count = __MIN( i_thread_count, 16 );
330     msg_Dbg( p_dec, "allowing %d thread(s) for decoding", i_thread_count );
331     p_sys->p_context->thread_count = i_thread_count;
332 #endif
333
334     char *hw = var_CreateGetString( p_dec, "avcodec-hw" ); /* FIXME */
335     if( (hw == NULL || strcasecmp( hw, "none" )) &&
336         (i_codec_id == CODEC_ID_MPEG1VIDEO || i_codec_id == CODEC_ID_MPEG2VIDEO ||
337          i_codec_id == CODEC_ID_MPEG4 ||
338          i_codec_id == CODEC_ID_H264 ||
339          i_codec_id == CODEC_ID_VC1 || i_codec_id == CODEC_ID_WMV3) )
340     {
341 #ifdef HAVE_AVCODEC_MT
342         if( p_sys->p_context->thread_type & FF_THREAD_FRAME )
343         {
344             msg_Warn( p_dec, "threaded frame decoding is not compatible with libavcodec-hw, disabled" );
345             p_sys->p_context->thread_type &= ~FF_THREAD_FRAME;
346         }
347         if( ( p_sys->p_context->thread_type & FF_THREAD_SLICE ) &&
348             ( i_codec_id == CODEC_ID_MPEG1VIDEO || i_codec_id == CODEC_ID_MPEG2VIDEO ) )
349         {
350             msg_Warn( p_dec, "threaded slice decoding is not compatible with libavcodec-hw, disabled" );
351             p_sys->p_context->thread_type &= ~FF_THREAD_SLICE;
352         }
353 #endif
354         p_sys->p_context->get_format = ffmpeg_GetFormat;
355     }
356     free( hw );
357 #ifdef HAVE_AVCODEC_MT
358     if( p_sys->p_context->thread_type & FF_THREAD_FRAME )
359         p_dec->i_extra_picture_buffers = 2 * p_sys->p_context->thread_count;
360 #endif
361
362
363     /* ***** misc init ***** */
364     p_sys->i_pts = VLC_TS_INVALID;
365     p_sys->b_has_b_frames = false;
366     p_sys->b_first_frame = true;
367     p_sys->b_flush = false;
368     p_sys->i_late_frames = 0;
369
370     /* Set output properties */
371     p_dec->fmt_out.i_cat = VIDEO_ES;
372     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS )
373     {
374         /* we are doomed. but not really, because most codecs set their pix_fmt later on */
375         p_dec->fmt_out.i_codec = VLC_CODEC_I420;
376     }
377     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
378
379     /* Setup palette */
380 # warning FIXME
381
382     /* ***** init this codec with special data ***** */
383     ffmpeg_InitCodec( p_dec );
384
385     /* ***** Open the codec ***** */
386     if( ffmpeg_OpenCodec( p_dec ) < 0 )
387     {
388         msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
389         av_free( p_sys->p_ff_pic );
390         vlc_sem_destroy( &p_sys->sem_mt );
391         free( p_sys );
392         return VLC_EGENERIC;
393     }
394
395     return VLC_SUCCESS;
396 }
397
398 /*****************************************************************************
399  * DecodeVideo: Called to decode one or more frames
400  *****************************************************************************/
401 picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
402 {
403     decoder_sys_t *p_sys = p_dec->p_sys;
404     AVCodecContext *p_context = p_sys->p_context;
405     int b_drawpicture;
406     int b_null_size = false;
407     block_t *p_block;
408
409     if( !pp_block || !*pp_block )
410         return NULL;
411
412     if( !p_context->extradata_size && p_dec->fmt_in.i_extra )
413     {
414         ffmpeg_InitCodec( p_dec );
415         if( p_sys->b_delayed_open )
416         {
417             if( ffmpeg_OpenCodec( p_dec ) )
418                 msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
419         }
420     }
421
422     p_block = *pp_block;
423     if( p_sys->b_delayed_open )
424     {
425         block_Release( p_block );
426         return NULL;
427     }
428
429     if( p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) )
430     {
431         p_sys->i_pts = VLC_TS_INVALID; /* To make sure we recover properly */
432
433         p_sys->i_late_frames = 0;
434
435         if( p_block->i_flags & BLOCK_FLAG_DISCONTINUITY )
436             avcodec_flush_buffers( p_context );
437
438         block_Release( p_block );
439         return NULL;
440     }
441
442     if( p_block->i_flags & BLOCK_FLAG_PREROLL )
443     {
444         /* Do not care about late frames when prerolling
445          * TODO avoid decoding of non reference frame
446          * (ie all B except for H264 where it depends only on nal_ref_idc) */
447         p_sys->i_late_frames = 0;
448     }
449
450     if( !p_dec->b_pace_control && (p_sys->i_late_frames > 0) &&
451         (mdate() - p_sys->i_late_frames_start > INT64_C(5000000)) )
452     {
453         if( p_sys->i_pts > VLC_TS_INVALID )
454         {
455             msg_Err( p_dec, "more than 5 seconds of late video -> "
456                      "dropping frame (computer too slow ?)" );
457             p_sys->i_pts = VLC_TS_INVALID; /* To make sure we recover properly */
458         }
459         block_Release( p_block );
460         p_sys->i_late_frames--;
461         return NULL;
462     }
463
464     /* A good idea could be to decode all I pictures and see for the other */
465     if( !p_dec->b_pace_control &&
466         p_sys->b_hurry_up &&
467         (p_sys->i_late_frames > 4) )
468     {
469         b_drawpicture = 0;
470         if( p_sys->i_late_frames < 12 )
471         {
472             p_context->skip_frame =
473                     (p_sys->i_skip_frame <= AVDISCARD_NONREF) ?
474                     AVDISCARD_NONREF : p_sys->i_skip_frame;
475         }
476         else
477         {
478             /* picture too late, won't decode
479              * but break picture until a new I, and for mpeg4 ...*/
480             p_sys->i_late_frames--; /* needed else it will never be decrease */
481             block_Release( p_block );
482             return NULL;
483         }
484     }
485     else
486     {
487         if( p_sys->b_hurry_up )
488             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_context->width <= 0 || p_context->height <= 0 )
496     {
497         if( p_sys->b_hurry_up )
498             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_context->skip_frame = __MAX( p_context->skip_frame,
508                                                   AVDISCARD_NONREF );
509 #endif
510     }
511
512     /*
513      * Do the actual decoding now */
514
515     /* Don't forget that libavcodec requires a little more bytes
516      * that the real frame size */
517     if( p_block->i_buffer > 0 )
518     {
519         p_sys->b_flush = ( p_block->i_flags & BLOCK_FLAG_END_OF_SEQUENCE ) != 0;
520
521         p_block = block_Realloc( p_block, 0,
522                             p_block->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE );
523         if( !p_block )
524             return NULL;
525         p_block->i_buffer -= FF_INPUT_BUFFER_PADDING_SIZE;
526         *pp_block = p_block;
527         memset( p_block->p_buffer + p_block->i_buffer, 0,
528                 FF_INPUT_BUFFER_PADDING_SIZE );
529     }
530
531     while( p_block->i_buffer > 0 || p_sys->b_flush )
532     {
533         int i_used, b_gotpicture;
534         picture_t *p_pic;
535         AVPacket pkt;
536
537         /* Set the PTS/DTS in the context reordered_opaque field */
538         if( p_block->i_pts > VLC_TS_INVALID  )
539             p_context->reordered_opaque = (p_block->i_pts << 1) | 0;
540         else if( p_block->i_dts > VLC_TS_INVALID )
541             p_context->reordered_opaque = (p_block->i_dts << 1) | 1;
542         else
543             p_context->reordered_opaque = INT64_MIN;
544         p_sys->p_ff_pic->reordered_opaque = p_context->reordered_opaque;
545
546         /* Make sure we don't reuse the same timestamps twice */
547         p_block->i_pts =
548         p_block->i_dts = VLC_TS_INVALID;
549
550         post_mt( p_sys );
551
552         av_init_packet( &pkt );
553         pkt.data = p_block->p_buffer;
554         pkt.size = p_block->i_buffer;
555         i_used = avcodec_decode_video2( p_context, p_sys->p_ff_pic,
556                                        &b_gotpicture, &pkt );
557
558         if( b_null_size && !p_sys->b_flush &&
559             p_context->width > 0 && p_context->height > 0 )
560         {
561             /* Reparse it to not drop the I frame */
562             b_null_size = false;
563             if( p_sys->b_hurry_up )
564                 p_context->skip_frame = p_sys->i_skip_frame;
565             i_used = avcodec_decode_video2( p_context, p_sys->p_ff_pic,
566                                            &b_gotpicture, &pkt );
567         }
568         wait_mt( p_sys );
569
570         if( p_sys->b_flush )
571             p_sys->b_first_frame = true;
572
573         if( p_block->i_buffer <= 0 )
574             p_sys->b_flush = false;
575
576         if( i_used < 0 )
577         {
578             if( b_drawpicture )
579                 msg_Warn( p_dec, "cannot decode one frame (%zu bytes)",
580                           p_block->i_buffer );
581             block_Release( p_block );
582             return NULL;
583         }
584         else if( i_used > p_block->i_buffer ||
585                  p_context->thread_count > 1 )
586         {
587             i_used = p_block->i_buffer;
588         }
589
590         /* Consumed bytes */
591         p_block->i_buffer -= i_used;
592         p_block->p_buffer += i_used;
593
594         /* Nothing to display */
595         if( !b_gotpicture )
596         {
597             if( i_used == 0 ) break;
598             continue;
599         }
600
601         /* Sanity check (seems to be needed for some streams) */
602         if( p_sys->p_ff_pic->pict_type == AV_PICTURE_TYPE_B)
603         {
604             p_sys->b_has_b_frames = true;
605         }
606
607         /* Compute the PTS */
608         mtime_t i_pts = VLC_TS_INVALID;
609         if( p_sys->p_ff_pic->reordered_opaque != INT64_MIN )
610         {
611             mtime_t i_ts = p_sys->p_ff_pic->reordered_opaque >> 1;
612             bool    b_dts = p_sys->p_ff_pic->reordered_opaque & 1;
613             if( b_dts )
614             {
615                 if( !p_context->has_b_frames ||
616                     !p_sys->b_has_b_frames ||
617                     !p_sys->p_ff_pic->reference ||
618                     p_sys->i_pts <= VLC_TS_INVALID )
619                     i_pts = i_ts;
620
621                 /* Guess what ? The rules are different for Real Video :( */
622                 if( (p_dec->fmt_in.i_codec == VLC_CODEC_RV30 ||
623                      p_dec->fmt_in.i_codec == VLC_CODEC_RV40) &&
624                     p_sys->b_has_b_frames )
625                 {
626                     i_pts = VLC_TS_INVALID;
627                     if(p_sys->p_ff_pic->reference) i_pts = i_ts;
628                 }
629             }
630             else
631             {
632                 i_pts = i_ts;
633             }
634         }
635         if( i_pts <= VLC_TS_INVALID )
636             i_pts = p_sys->i_pts;
637
638         /* Interpolate the next PTS */
639         if( i_pts > VLC_TS_INVALID )
640             p_sys->i_pts = i_pts;
641         if( p_sys->i_pts > VLC_TS_INVALID )
642         {
643             /* interpolate the next PTS */
644             if( p_dec->fmt_in.video.i_frame_rate > 0 &&
645                 p_dec->fmt_in.video.i_frame_rate_base > 0 )
646             {
647                 p_sys->i_pts += INT64_C(1000000) *
648                     (2 + p_sys->p_ff_pic->repeat_pict) *
649                     p_dec->fmt_in.video.i_frame_rate_base /
650                     (2 * p_dec->fmt_in.video.i_frame_rate);
651             }
652             else if( p_context->time_base.den > 0 )
653             {
654                 int i_tick = p_context->ticks_per_frame;
655                 if( i_tick <= 0 )
656                     i_tick = 1;
657
658                 p_sys->i_pts += INT64_C(1000000) *
659                     (2 + p_sys->p_ff_pic->repeat_pict) *
660                     i_tick * p_context->time_base.num /
661                     (2 * p_context->time_base.den);
662             }
663         }
664
665         /* Update frame late count (except when doing preroll) */
666         mtime_t i_display_date = 0;
667         if( !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
668             i_display_date = decoder_GetDisplayDate( p_dec, i_pts );
669
670         if( i_display_date > 0 && i_display_date <= mdate() )
671         {
672             p_sys->i_late_frames++;
673             if( p_sys->i_late_frames == 1 )
674                 p_sys->i_late_frames_start = mdate();
675         }
676         else
677         {
678             p_sys->i_late_frames = 0;
679         }
680
681         if( !b_drawpicture || ( !p_sys->p_va && !p_sys->p_ff_pic->linesize[0] ) )
682             continue;
683
684         if( p_sys->p_va != NULL || p_sys->p_ff_pic->opaque == NULL )
685         {
686             /* Get a new picture */
687             p_pic = ffmpeg_NewPictBuf( p_dec, p_context );
688             if( !p_pic )
689             {
690                 block_Release( p_block );
691                 return NULL;
692             }
693
694             /* Fill p_picture_t from AVVideoFrame and do chroma conversion
695              * if needed */
696             ffmpeg_CopyPicture( p_dec, p_pic, p_sys->p_ff_pic );
697         }
698         else
699         {
700             p_pic = (picture_t *)p_sys->p_ff_pic->opaque;
701             decoder_LinkPicture( p_dec, p_pic );
702         }
703
704         if( !p_dec->fmt_in.video.i_sar_num || !p_dec->fmt_in.video.i_sar_den )
705         {
706             /* Fetch again the aspect ratio in case it changed */
707             p_dec->fmt_out.video.i_sar_num
708                 = p_context->sample_aspect_ratio.num;
709             p_dec->fmt_out.video.i_sar_den
710                 = p_context->sample_aspect_ratio.den;
711
712             if( !p_dec->fmt_out.video.i_sar_num || !p_dec->fmt_out.video.i_sar_den )
713             {
714                 p_dec->fmt_out.video.i_sar_num = 1;
715                 p_dec->fmt_out.video.i_sar_den = 1;
716             }
717         }
718
719         /* Send decoded frame to vout */
720         if( i_pts > VLC_TS_INVALID)
721         {
722             p_pic->date = i_pts;
723
724             if( p_sys->b_first_frame )
725             {
726                 /* Hack to force display of still pictures */
727                 p_sys->b_first_frame = false;
728                 p_pic->b_force = true;
729             }
730
731             p_pic->i_nb_fields = 2 + p_sys->p_ff_pic->repeat_pict;
732             p_pic->b_progressive = !p_sys->p_ff_pic->interlaced_frame;
733             p_pic->b_top_field_first = p_sys->p_ff_pic->top_field_first;
734
735             p_pic->i_qstride = p_sys->p_ff_pic->qstride;
736             int i_mb_h = ( p_pic->format.i_height + 15 ) / 16;
737             p_pic->p_q = malloc( p_pic->i_qstride * i_mb_h );
738             memcpy( p_pic->p_q, p_sys->p_ff_pic->qscale_table,
739                     p_pic->i_qstride * i_mb_h );
740             switch( p_sys->p_ff_pic->qscale_type )
741             {
742                 case FF_QSCALE_TYPE_MPEG1:
743                     p_pic->i_qtype = QTYPE_MPEG1;
744                     break;
745                 case FF_QSCALE_TYPE_MPEG2:
746                     p_pic->i_qtype = QTYPE_MPEG2;
747                     break;
748                 case FF_QSCALE_TYPE_H264:
749                     p_pic->i_qtype = QTYPE_H264;
750                     break;
751             }
752
753             return p_pic;
754         }
755         else
756         {
757             decoder_DeletePicture( p_dec, p_pic );
758         }
759     }
760
761     block_Release( p_block );
762     return NULL;
763 }
764
765 /*****************************************************************************
766  * EndVideo: decoder destruction
767  *****************************************************************************
768  * This function is called when the thread ends after a successful
769  * initialization.
770  *****************************************************************************/
771 void EndVideoDec( decoder_t *p_dec )
772 {
773     decoder_sys_t *p_sys = p_dec->p_sys;
774
775     post_mt( p_sys );
776
777     /* do not flush buffers if codec hasn't been opened (theora/vorbis/VC1) */
778     if( p_sys->p_context->codec )
779         avcodec_flush_buffers( p_sys->p_context );
780
781     wait_mt( p_sys );
782
783     if( p_sys->p_ff_pic ) av_free( p_sys->p_ff_pic );
784
785     if( p_sys->p_va )
786     {
787         vlc_va_Delete( p_sys->p_va );
788         p_sys->p_va = NULL;
789     }
790     vlc_sem_destroy( &p_sys->sem_mt );
791 }
792
793 /*****************************************************************************
794  * ffmpeg_InitCodec: setup codec extra initialization data for ffmpeg
795  *****************************************************************************/
796 static void ffmpeg_InitCodec( decoder_t *p_dec )
797 {
798     decoder_sys_t *p_sys = p_dec->p_sys;
799     int i_size = p_dec->fmt_in.i_extra;
800
801     if( !i_size ) return;
802
803     if( p_sys->i_codec_id == CODEC_ID_SVQ3 )
804     {
805         uint8_t *p;
806
807         p_sys->p_context->extradata_size = i_size + 12;
808         p = p_sys->p_context->extradata  =
809             malloc( p_sys->p_context->extradata_size );
810         if( !p )
811             return;
812
813         memcpy( &p[0],  "SVQ3", 4 );
814         memset( &p[4], 0, 8 );
815         memcpy( &p[12], p_dec->fmt_in.p_extra, i_size );
816
817         /* Now remove all atoms before the SMI one */
818         if( p_sys->p_context->extradata_size > 0x5a &&
819             strncmp( (char*)&p[0x56], "SMI ", 4 ) )
820         {
821             uint8_t *psz = &p[0x52];
822
823             while( psz < &p[p_sys->p_context->extradata_size - 8] )
824             {
825                 int i_size = GetDWBE( psz );
826                 if( i_size <= 1 )
827                 {
828                     /* FIXME handle 1 as long size */
829                     break;
830                 }
831                 if( !strncmp( (char*)&psz[4], "SMI ", 4 ) )
832                 {
833                     memmove( &p[0x52], psz,
834                              &p[p_sys->p_context->extradata_size] - psz );
835                     break;
836                 }
837
838                 psz += i_size;
839             }
840         }
841     }
842     else
843     {
844         p_sys->p_context->extradata_size = i_size;
845         p_sys->p_context->extradata =
846             malloc( i_size + FF_INPUT_BUFFER_PADDING_SIZE );
847         if( p_sys->p_context->extradata )
848         {
849             memcpy( p_sys->p_context->extradata,
850                     p_dec->fmt_in.p_extra, i_size );
851             memset( &((uint8_t*)p_sys->p_context->extradata)[i_size],
852                     0, FF_INPUT_BUFFER_PADDING_SIZE );
853         }
854     }
855 }
856
857 /*****************************************************************************
858  * ffmpeg_CopyPicture: copy a picture from ffmpeg internal buffers to a
859  *                     picture_t structure (when not in direct rendering mode).
860  *****************************************************************************/
861 static void ffmpeg_CopyPicture( decoder_t *p_dec,
862                                 picture_t *p_pic, AVFrame *p_ff_pic )
863 {
864     decoder_sys_t *p_sys = p_dec->p_sys;
865
866     if( p_sys->p_va )
867     {
868         vlc_va_Extract( p_sys->p_va, p_pic, p_ff_pic );
869     }
870     else if( FindVlcChroma( p_sys->p_context->pix_fmt ) )
871     {
872         int i_plane, i_size, i_line;
873         uint8_t *p_dst, *p_src;
874         int i_src_stride, i_dst_stride;
875
876         for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
877         {
878             p_src  = p_ff_pic->data[i_plane];
879             p_dst = p_pic->p[i_plane].p_pixels;
880             i_src_stride = p_ff_pic->linesize[i_plane];
881             i_dst_stride = p_pic->p[i_plane].i_pitch;
882
883             i_size = __MIN( i_src_stride, i_dst_stride );
884             for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines;
885                  i_line++ )
886             {
887                 memcpy( p_dst, p_src, i_size );
888                 p_src += i_src_stride;
889                 p_dst += i_dst_stride;
890             }
891         }
892     }
893     else
894     {
895         const char *name = av_get_pix_fmt_name( p_sys->p_context->pix_fmt );
896         msg_Err( p_dec, "Unsupported decoded output format %d (%s)",
897                  p_sys->p_context->pix_fmt, name ? name : "unknown" );
898         p_dec->b_error = 1;
899     }
900 }
901
902 /*****************************************************************************
903  * ffmpeg_GetFrameBuf: callback used by ffmpeg to get a frame buffer.
904  *****************************************************************************
905  * It is used for direct rendering as well as to get the right PTS for each
906  * decoded picture (even in indirect rendering mode).
907  *****************************************************************************/
908 static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
909                                AVFrame *p_ff_pic )
910 {
911     decoder_t *p_dec = (decoder_t *)p_context->opaque;
912     decoder_sys_t *p_sys = p_dec->p_sys;
913     picture_t *p_pic;
914
915     /* */
916     p_ff_pic->reordered_opaque = p_context->reordered_opaque;
917     p_ff_pic->opaque = NULL;
918
919     if( p_sys->p_va )
920     {
921         /* hwaccel_context is not present in old ffmpeg version */
922         if( vlc_va_Setup( p_sys->p_va,
923                           &p_context->hwaccel_context, &p_dec->fmt_out.video.i_chroma,
924                           p_context->width, p_context->height ) )
925         {
926             msg_Err( p_dec, "vlc_va_Setup failed" );
927             return -1;
928         }
929
930         /* */
931         p_ff_pic->type = FF_BUFFER_TYPE_USER;
932
933         if( vlc_va_Get( p_sys->p_va, p_ff_pic ) )
934         {
935             msg_Err( p_dec, "VaGrabSurface failed" );
936             return -1;
937         }
938         return 0;
939     }
940     else if( !p_sys->b_direct_rendering )
941     {
942         /* Not much to do in indirect rendering mode. */
943         return avcodec_default_get_buffer( p_context, p_ff_pic );
944     }
945
946     wait_mt( p_sys );
947     /* Some codecs set pix_fmt only after the 1st frame has been decoded,
948      * so we need to check for direct rendering again. */
949
950     int i_width = p_context->width;
951     int i_height = p_context->height;
952     avcodec_align_dimensions( p_context, &i_width, &i_height );
953
954     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS ||
955         p_context->pix_fmt == PIX_FMT_PAL8 )
956         goto no_dr;
957
958     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
959
960     /* Get a new picture */
961     p_pic = ffmpeg_NewPictBuf( p_dec, p_context );
962     if( !p_pic )
963         goto no_dr;
964     bool b_compatible = true;
965     if( p_pic->p[0].i_pitch / p_pic->p[0].i_pixel_pitch < i_width ||
966         p_pic->p[0].i_lines < i_height )
967         b_compatible = false;
968     for( int i = 0; i < p_pic->i_planes && b_compatible; i++ )
969     {
970         unsigned i_align;
971         switch( p_sys->i_codec_id )
972         {
973         case CODEC_ID_SVQ1:
974         case CODEC_ID_VP5:
975         case CODEC_ID_VP6:
976         case CODEC_ID_VP6F:
977         case CODEC_ID_VP6A:
978             i_align = 16;
979             break;
980         default:
981             i_align = i == 0 ? 16 : 8;
982             break;
983         }
984         if( p_pic->p[i].i_pitch % i_align )
985             b_compatible = false;
986         if( (intptr_t)p_pic->p[i].p_pixels % i_align )
987             b_compatible = false;
988     }
989     if( p_context->pix_fmt == PIX_FMT_YUV422P && b_compatible )
990     {
991         if( 2 * p_pic->p[1].i_pitch != p_pic->p[0].i_pitch ||
992             2 * p_pic->p[2].i_pitch != p_pic->p[0].i_pitch )
993             b_compatible = false;
994     }
995     if( !b_compatible )
996     {
997         decoder_DeletePicture( p_dec, p_pic );
998         goto no_dr;
999     }
1000
1001     if( p_sys->i_direct_rendering_used != 1 )
1002     {
1003         msg_Dbg( p_dec, "using direct rendering" );
1004         p_sys->i_direct_rendering_used = 1;
1005     }
1006
1007     p_context->draw_horiz_band = NULL;
1008
1009     p_ff_pic->opaque = (void*)p_pic;
1010     p_ff_pic->type = FF_BUFFER_TYPE_USER;
1011     p_ff_pic->data[0] = p_pic->p[0].p_pixels;
1012     p_ff_pic->data[1] = p_pic->p[1].p_pixels;
1013     p_ff_pic->data[2] = p_pic->p[2].p_pixels;
1014     p_ff_pic->data[3] = NULL; /* alpha channel but I'm not sure */
1015
1016     p_ff_pic->linesize[0] = p_pic->p[0].i_pitch;
1017     p_ff_pic->linesize[1] = p_pic->p[1].i_pitch;
1018     p_ff_pic->linesize[2] = p_pic->p[2].i_pitch;
1019     p_ff_pic->linesize[3] = 0;
1020
1021     post_mt( p_sys );
1022     return 0;
1023
1024 no_dr:
1025     if( p_sys->i_direct_rendering_used != 0 )
1026     {
1027         msg_Warn( p_dec, "disabling direct rendering" );
1028         p_sys->i_direct_rendering_used = 0;
1029     }
1030     post_mt( p_sys );
1031     return avcodec_default_get_buffer( p_context, p_ff_pic );
1032 }
1033 static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *p_context, AVFrame *p_ff_pic )
1034 {
1035     p_ff_pic->reordered_opaque = p_context->reordered_opaque;
1036
1037     /* We always use default reget function, it works perfectly fine */
1038     return avcodec_default_reget_buffer( p_context, p_ff_pic );
1039 }
1040
1041 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *p_context,
1042                                     AVFrame *p_ff_pic )
1043 {
1044     decoder_t *p_dec = (decoder_t *)p_context->opaque;
1045     decoder_sys_t *p_sys = p_dec->p_sys;
1046
1047     if( p_sys->p_va )
1048     {
1049         vlc_va_Release( p_sys->p_va, p_ff_pic );
1050     }
1051     else if( !p_ff_pic->opaque )
1052     {
1053         /* We can end up here without the AVFrame being allocated by
1054          * avcodec_default_get_buffer() if VA is used and the frame is
1055          * released when the decoder is closed
1056          */
1057         if( p_ff_pic->type == FF_BUFFER_TYPE_INTERNAL )
1058             avcodec_default_release_buffer( p_context, p_ff_pic );
1059     }
1060     else
1061     {
1062         picture_t *p_pic = (picture_t*)p_ff_pic->opaque;
1063
1064         decoder_UnlinkPicture( p_dec, p_pic );
1065     }
1066     for( int i = 0; i < 4; i++ )
1067         p_ff_pic->data[i] = NULL;
1068 }
1069
1070 static int ffmpeg_va_Start( void *func, va_list ap )
1071 {
1072     vlc_va_t *va = va_arg( ap, vlc_va_t * );
1073     int codec = va_arg( ap, int );
1074     const es_format_t *fmt = va_arg( ap, const es_format_t * );
1075     int (*open)( vlc_va_t *, int, const es_format_t * ) = func;
1076
1077     return open( va, codec, fmt );
1078 }
1079
1080 static vlc_va_t *vlc_va_New( vlc_object_t *parent, int codec_id,
1081                              const es_format_t *fmt )
1082 {
1083     vlc_va_t *p_va = vlc_object_create( parent, sizeof( *p_va ) );
1084     if( unlikely(p_va == NULL) )
1085         return NULL;
1086
1087     p_va->module = vlc_module_load( p_va, "hw decoder", "$avcodec-hw",
1088                                     true, ffmpeg_va_Start, p_va,
1089                                     codec_id, fmt );
1090     if( p_va->module == NULL )
1091     {
1092         vlc_object_release( p_va );
1093         p_va = NULL;
1094     }
1095     return p_va;
1096 }
1097
1098 static void ffmpeg_va_Stop( void *func, va_list ap )
1099 {
1100     vlc_va_t *va = va_arg( ap, vlc_va_t * );
1101     void (*close)( vlc_va_t * ) = func;
1102
1103     close( va );
1104 }
1105
1106 static void vlc_va_Delete( vlc_va_t *va )
1107 {
1108     vlc_module_unload( va->module, ffmpeg_va_Stop, va );
1109     vlc_object_release( va );
1110 }
1111
1112 static enum PixelFormat ffmpeg_GetFormat( AVCodecContext *p_context,
1113                                           const enum PixelFormat *pi_fmt )
1114 {
1115     decoder_t *p_dec = p_context->opaque;
1116     decoder_sys_t *p_sys = p_dec->p_sys;
1117     vlc_va_t *p_va = p_sys->p_va;
1118
1119     if( p_va != NULL )
1120         vlc_va_Delete( p_va );
1121
1122     p_va = vlc_va_New( VLC_OBJECT(p_dec), p_sys->i_codec_id, &p_dec->fmt_in );
1123     if( p_va != NULL )
1124     {
1125         /* Try too look for a supported hw acceleration */
1126         for( size_t i = 0; pi_fmt[i] != PIX_FMT_NONE; i++ )
1127         {
1128             const char *name = av_get_pix_fmt_name(pi_fmt[i]);
1129             msg_Dbg( p_dec, "Available decoder output format %d (%s)",
1130                      pi_fmt[i], name ? name : "unknown" );
1131             if( p_va->pix_fmt != pi_fmt[i] )
1132                 continue;
1133
1134             /* We try to call vlc_va_Setup when possible to detect errors when
1135              * possible (later is too late) */
1136             if( p_context->width > 0 && p_context->height > 0
1137              && vlc_va_Setup( p_va, &p_context->hwaccel_context,
1138                               &p_dec->fmt_out.video.i_chroma,
1139                               p_context->width, p_context->height ) )
1140             {
1141                 msg_Err( p_dec, "acceleration setup failure" );
1142                 break;
1143             }
1144
1145             if( p_va->description )
1146                 msg_Info( p_dec, "Using %s for hardware decoding.",
1147                           p_va->description );
1148
1149             /* FIXME this will disable direct rendering
1150              * even if a new pixel format is renegotiated
1151              */
1152             p_sys->b_direct_rendering = false;
1153             p_sys->p_va = p_va;
1154             p_context->draw_horiz_band = NULL;
1155             return pi_fmt[i];
1156         }
1157
1158         msg_Err( p_dec, "acceleration not available" );
1159         vlc_va_Delete( p_va );
1160     }
1161     p_sys->p_va = NULL;
1162
1163     /* Fallback to default behaviour */
1164     return avcodec_default_get_format( p_context, pi_fmt );
1165 }