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