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