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