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