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