]> git.sesse.net Git - vlc/blob - modules/codec/avcodec/video.c
Use static mutexes
[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_vout.h>
35 #include <vlc_codecs.h>                               /* BITMAPINFOHEADER */
36
37 /* ffmpeg header */
38 #ifdef HAVE_LIBAVCODEC_AVCODEC_H
39 #   include <libavcodec/avcodec.h>
40 #elif defined(HAVE_FFMPEG_AVCODEC_H)
41 #   include <ffmpeg/avcodec.h>
42 #else
43 #   include <avcodec.h>
44 #endif
45
46 #include "avcodec.h"
47 #include "chroma.h"
48
49 /*****************************************************************************
50  * decoder_sys_t : decoder descriptor
51  *****************************************************************************/
52 struct decoder_sys_t
53 {
54     FFMPEG_COMMON_MEMBERS
55
56     /* Video decoder specific part */
57     mtime_t input_pts;
58     mtime_t input_dts;
59     mtime_t i_pts;
60
61     AVFrame          *p_ff_pic;
62     BITMAPINFOHEADER *p_format;
63
64     /* for frame skipping algo */
65     int b_hurry_up;
66     enum AVDiscard i_skip_frame;
67     enum AVDiscard i_skip_idct;
68
69     /* how many decoded frames are late */
70     int     i_late_frames;
71     mtime_t i_late_frames_start;
72
73     /* for direct rendering */
74     int b_direct_rendering;
75
76     bool b_has_b_frames;
77
78     /* Hack to force display of still pictures */
79     bool b_first_frame;
80
81     int i_buffer_orig, i_buffer;
82     char *p_buffer_orig, *p_buffer;
83
84     /* */
85     AVPaletteControl palette;
86
87     /* */
88     bool b_flush;
89 };
90
91 /* FIXME (dummy palette for now) */
92 static const AVPaletteControl palette_control;
93
94 /*****************************************************************************
95  * Local prototypes
96  *****************************************************************************/
97 static void ffmpeg_InitCodec      ( decoder_t * );
98 static void ffmpeg_CopyPicture    ( decoder_t *, picture_t *, AVFrame * );
99 static int  ffmpeg_GetFrameBuf    ( struct AVCodecContext *, AVFrame * );
100 static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *, AVFrame * );
101 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *, AVFrame * );
102 static void ffmpeg_NextPts( decoder_t * );
103
104 static uint32_t ffmpeg_CodecTag( vlc_fourcc_t fcc )
105 {
106     uint8_t *p = (uint8_t*)&fcc;
107     return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
108 }
109
110 /*****************************************************************************
111  * Local Functions
112  *****************************************************************************/
113
114 /* Returns a new picture buffer */
115 static inline picture_t *ffmpeg_NewPictBuf( decoder_t *p_dec,
116                                             AVCodecContext *p_context )
117 {
118     picture_t *p_pic;
119
120     p_dec->fmt_out.video.i_width = p_context->width;
121     p_dec->fmt_out.video.i_height = p_context->height;
122
123     if( !p_context->width || !p_context->height )
124     {
125         return NULL; /* invalid display size */
126     }
127
128     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS )
129     {
130         /* we are doomed, but not really, because most codecs set their pix_fmt much later */
131         p_dec->fmt_out.i_codec = VLC_FOURCC('I','4','2','0');
132     }
133     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
134
135     /* If an aspect-ratio was specified in the input format then force it */
136     if( p_dec->fmt_in.video.i_aspect )
137     {
138         p_dec->fmt_out.video.i_aspect = p_dec->fmt_in.video.i_aspect;
139     }
140     else
141     {
142         p_dec->fmt_out.video.i_aspect =
143             VOUT_ASPECT_FACTOR * ( av_q2d(p_context->sample_aspect_ratio) *
144                 p_context->width / p_context->height );
145         p_dec->fmt_out.video.i_sar_num = p_context->sample_aspect_ratio.num;
146         p_dec->fmt_out.video.i_sar_den = p_context->sample_aspect_ratio.den;
147
148         if( p_dec->fmt_out.video.i_aspect == 0 )
149         {
150             p_dec->fmt_out.video.i_aspect =
151                 VOUT_ASPECT_FACTOR * p_context->width / p_context->height;
152         }
153     }
154
155     if( p_dec->fmt_out.video.i_frame_rate > 0 &&
156         p_dec->fmt_out.video.i_frame_rate_base > 0 )
157     {
158         p_dec->fmt_out.video.i_frame_rate =
159             p_dec->fmt_in.video.i_frame_rate;
160         p_dec->fmt_out.video.i_frame_rate_base =
161             p_dec->fmt_in.video.i_frame_rate_base;
162     }
163     else if( p_context->time_base.num > 0 && p_context->time_base.den > 0 )
164     {
165         p_dec->fmt_out.video.i_frame_rate = p_context->time_base.den;
166         p_dec->fmt_out.video.i_frame_rate_base = p_context->time_base.num;
167     }
168
169     p_pic = p_dec->pf_vout_buffer_new( p_dec );
170
171     return p_pic;
172 }
173
174 /*****************************************************************************
175  * InitVideo: initialize the video decoder
176  *****************************************************************************
177  * the ffmpeg codec will be opened, some memory allocated. The vout is not yet
178  * opened (done after the first decoded frame).
179  *****************************************************************************/
180 int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
181                       AVCodec *p_codec, int i_codec_id, const char *psz_namecodec )
182 {
183     decoder_sys_t *p_sys;
184     vlc_value_t val;
185
186     /* Allocate the memory needed to store the decoder's structure */
187     if( ( p_dec->p_sys = p_sys =
188           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
189     {
190         return VLC_ENOMEM;
191     }
192     memset( p_sys, 0, sizeof(decoder_sys_t) );
193
194     p_dec->p_sys->p_context = p_context;
195     p_dec->p_sys->p_codec = p_codec;
196     p_dec->p_sys->i_codec_id = i_codec_id;
197     p_dec->p_sys->psz_namecodec = psz_namecodec;
198     p_sys->p_ff_pic = avcodec_alloc_frame();
199
200     /* ***** Fill p_context with init values ***** */
201     p_sys->p_context->codec_tag = ffmpeg_CodecTag( p_dec->fmt_in.i_codec );
202     p_sys->p_context->width  = p_dec->fmt_in.video.i_width;
203     p_sys->p_context->height = p_dec->fmt_in.video.i_height;
204 #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
205     p_sys->p_context->bits_per_sample = p_dec->fmt_in.video.i_bits_per_pixel;
206 #else
207     p_sys->p_context->bits_per_coded_sample = p_dec->fmt_in.video.i_bits_per_pixel;
208 #endif
209
210     /*  ***** Get configuration of ffmpeg plugin ***** */
211     p_sys->p_context->workaround_bugs =
212         config_GetInt( p_dec, "ffmpeg-workaround-bugs" );
213 #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
214     p_sys->p_context->error_resilience =
215         config_GetInt( p_dec, "ffmpeg-error-resilience" );
216 #else
217     p_sys->p_context->error_recognition =
218         config_GetInt( p_dec, "ffmpeg-error-resilience" );
219 #endif
220
221     var_Create( p_dec, "grayscale", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
222     var_Get( p_dec, "grayscale", &val );
223     if( val.b_bool ) p_sys->p_context->flags |= CODEC_FLAG_GRAY;
224
225     var_Create( p_dec, "ffmpeg-vismv", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
226     var_Get( p_dec, "ffmpeg-vismv", &val );
227     if( val.i_int ) p_sys->p_context->debug_mv = val.i_int;
228
229     var_Create( p_dec, "ffmpeg-lowres", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
230     var_Get( p_dec, "ffmpeg-lowres", &val );
231     if( val.i_int > 0 && val.i_int <= 2 ) p_sys->p_context->lowres = val.i_int;
232
233     var_Create( p_dec, "ffmpeg-skiploopfilter",
234                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
235     var_Get( p_dec, "ffmpeg-skiploopfilter", &val );
236     if( val.i_int > 0 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONREF;
237     if( val.i_int > 1 ) p_sys->p_context->skip_loop_filter = AVDISCARD_BIDIR;
238     if( val.i_int > 2 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONKEY;
239     if( val.i_int > 3 ) p_sys->p_context->skip_loop_filter = AVDISCARD_ALL;
240
241     /* ***** ffmpeg frame skipping ***** */
242     var_Create( p_dec, "ffmpeg-hurry-up", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
243     var_Get( p_dec, "ffmpeg-hurry-up", &val );
244     p_sys->b_hurry_up = val.b_bool;
245
246     var_Create( p_dec, "ffmpeg-skip-frame", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
247     var_Get( p_dec, "ffmpeg-skip-frame", &val );
248     switch( val.i_int )
249     {
250         case -1:
251             p_sys->p_context->skip_frame = AVDISCARD_NONE;
252             break;
253         case 0:
254             p_sys->p_context->skip_frame = AVDISCARD_DEFAULT;
255             break;
256         case 1:
257             p_sys->p_context->skip_frame = AVDISCARD_BIDIR;
258             break;
259         case 2:
260             p_sys->p_context->skip_frame = AVDISCARD_NONKEY;
261             break;
262         case 3:
263             p_sys->p_context->skip_frame = AVDISCARD_ALL;
264             break;
265         default:
266             p_sys->p_context->skip_frame = AVDISCARD_NONE;
267             break;
268     }
269     p_sys->i_skip_frame = p_sys->p_context->skip_frame;
270
271     var_Create( p_dec, "ffmpeg-skip-idct",  VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
272     var_Get( p_dec, "ffmpeg-skip-idct", &val );
273     switch( val.i_int )
274     {
275         case -1:
276             p_sys->p_context->skip_idct = AVDISCARD_NONE;
277             break;
278         case 0:
279             p_sys->p_context->skip_idct = AVDISCARD_DEFAULT;
280             break;
281         case 1:
282             p_sys->p_context->skip_idct = AVDISCARD_BIDIR;
283             break;
284         case 2:
285             p_sys->p_context->skip_idct = AVDISCARD_NONKEY;
286             break;
287         case 3:
288             p_sys->p_context->skip_idct = AVDISCARD_ALL;
289             break;
290         default:
291             p_sys->p_context->skip_idct = AVDISCARD_NONE;
292             break;
293     }
294     p_sys->i_skip_idct = p_sys->p_context->skip_idct;
295
296     /* ***** ffmpeg direct rendering ***** */
297     p_sys->b_direct_rendering = 0;
298     var_Create( p_dec, "ffmpeg-dr", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
299     var_Get( p_dec, "ffmpeg-dr", &val );
300     if( val.b_bool && (p_sys->p_codec->capabilities & CODEC_CAP_DR1) &&
301         /* Apparently direct rendering doesn't work with YUV422P */
302         p_sys->p_context->pix_fmt != PIX_FMT_YUV422P &&
303         /* H264 uses too many reference frames */
304         p_sys->i_codec_id != CODEC_ID_H264 &&
305         !p_sys->p_context->debug_mv )
306     {
307         /* Some codecs set pix_fmt only after the 1st frame has been decoded,
308          * so we need to do another check in ffmpeg_GetFrameBuf() */
309         p_sys->b_direct_rendering = 1;
310     }
311
312     /* ffmpeg doesn't properly release old pictures when frames are skipped */
313     //if( p_sys->b_hurry_up ) p_sys->b_direct_rendering = 0;
314     if( p_sys->b_direct_rendering )
315     {
316         msg_Dbg( p_dec, "using direct rendering" );
317         p_sys->p_context->flags |= CODEC_FLAG_EMU_EDGE;
318     }
319
320     /* Always use our get_buffer wrapper so we can calculate the
321      * PTS correctly */
322     p_sys->p_context->get_buffer = ffmpeg_GetFrameBuf;
323     p_sys->p_context->reget_buffer = ffmpeg_ReGetFrameBuf;
324     p_sys->p_context->release_buffer = ffmpeg_ReleaseFrameBuf;
325     p_sys->p_context->opaque = p_dec;
326
327     /* ***** init this codec with special data ***** */
328     ffmpeg_InitCodec( p_dec );
329
330     /* ***** misc init ***** */
331     p_sys->input_pts = p_sys->input_dts = 0;
332     p_sys->i_pts = 0;
333     p_sys->b_has_b_frames = false;
334     p_sys->b_first_frame = true;
335     p_sys->b_flush = false;
336     p_sys->i_late_frames = 0;
337     p_sys->i_buffer = 0;
338     p_sys->i_buffer_orig = 1;
339     p_sys->p_buffer_orig = p_sys->p_buffer = malloc( p_sys->i_buffer_orig );
340     if( !p_sys->p_buffer_orig )
341     {
342         free( p_sys );
343         return VLC_ENOMEM;
344     }
345
346     /* Set output properties */
347     p_dec->fmt_out.i_cat = VIDEO_ES;
348     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS )
349     {
350         /* we are doomed. but not really, because most codecs set their pix_fmt later on */
351         p_dec->fmt_out.i_codec = VLC_FOURCC('I','4','2','0');
352     }
353     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
354
355     /* Setup palette */
356     memset( &p_sys->palette, 0, sizeof(p_sys->palette) );
357     if( p_dec->fmt_in.video.p_palette )
358     {
359         p_sys->palette.palette_changed = 1;
360
361         for( int i = 0; i < __MIN( AVPALETTE_COUNT, p_dec->fmt_in.video.p_palette->i_entries ); i++ )
362         {
363             union {
364                 uint32_t u;
365                 uint8_t a[4];
366             } c;
367             c.a[0] = p_dec->fmt_in.video.p_palette->palette[i][0];
368             c.a[1] = p_dec->fmt_in.video.p_palette->palette[i][1];
369             c.a[2] = p_dec->fmt_in.video.p_palette->palette[i][2];
370             c.a[3] = p_dec->fmt_in.video.p_palette->palette[i][3];
371
372             p_sys->palette.palette[i] = c.u;
373         }
374         p_sys->p_context->palctrl = &p_sys->palette;
375
376         p_dec->fmt_out.video.p_palette = malloc( sizeof(video_palette_t) );
377         if( p_dec->fmt_out.video.p_palette )
378             *p_dec->fmt_out.video.p_palette = *p_dec->fmt_in.video.p_palette;
379     }
380     else if( p_sys->i_codec_id != CODEC_ID_MSVIDEO1 && p_sys->i_codec_id != CODEC_ID_CINEPAK )
381     {
382         p_sys->p_context->palctrl = &p_sys->palette;
383     }
384
385     /* ***** Open the codec ***** */
386     vlc_mutex_lock( &avcodec_lock );
387     if( avcodec_open( p_sys->p_context, p_sys->p_codec ) < 0 )
388     {
389         vlc_mutex_unlock( &avcodec_lock );
390         msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
391         free( p_sys->p_buffer_orig );
392         free( p_sys );
393         return VLC_EGENERIC;
394     }
395     vlc_mutex_unlock( &avcodec_lock );
396     msg_Dbg( p_dec, "ffmpeg codec (%s) started", p_sys->psz_namecodec );
397
398
399     return VLC_SUCCESS;
400 }
401
402 /*****************************************************************************
403  * DecodeVideo: Called to decode one or more frames
404  *****************************************************************************/
405 picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
406 {
407     decoder_sys_t *p_sys = p_dec->p_sys;
408     int b_drawpicture;
409     int b_null_size = false;
410     block_t *p_block;
411
412     if( !pp_block || !*pp_block ) return NULL;
413
414     if( !p_sys->p_context->extradata_size && p_dec->fmt_in.i_extra )
415         ffmpeg_InitCodec( p_dec );
416
417     p_block = *pp_block;
418
419     if( p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) )
420     {
421         p_sys->i_buffer = 0;
422         p_sys->i_pts = 0; /* To make sure we recover properly */
423
424         p_sys->input_pts = p_sys->input_dts = 0;
425         p_sys->i_late_frames = 0;
426
427         block_Release( p_block );
428
429         //if( p_block->i_flags & BLOCK_FLAG_CORRUPTED )
430             //avcodec_flush_buffers( p_sys->p_context );
431         return NULL;
432     }
433
434     if( p_block->i_flags & BLOCK_FLAG_PREROLL )
435     {
436         /* Do not care about late frames when prerolling
437          * TODO avoid decoding of non reference frame
438          * (ie all B except for H264 where it depends only on nal_ref_idc) */
439         p_sys->i_late_frames = 0;
440     }
441
442     if( !p_dec->b_pace_control && (p_sys->i_late_frames > 0) &&
443         (mdate() - p_sys->i_late_frames_start > INT64_C(5000000)) )
444     {
445         if( p_sys->i_pts )
446         {
447             msg_Err( p_dec, "more than 5 seconds of late video -> "
448                      "dropping frame (computer too slow ?)" );
449             p_sys->i_pts = 0; /* To make sure we recover properly */
450         }
451         block_Release( p_block );
452         p_sys->i_late_frames--;
453         return NULL;
454     }
455
456     if( p_block->i_pts > 0 || p_block->i_dts > 0 )
457     {
458         p_sys->input_pts = p_block->i_pts;
459         p_sys->input_dts = p_block->i_dts;
460
461         /* Make sure we don't reuse the same timestamps twice */
462         p_block->i_pts = p_block->i_dts = 0;
463     }
464
465     /* A good idea could be to decode all I pictures and see for the other */
466     if( !p_dec->b_pace_control &&
467         p_sys->b_hurry_up &&
468         (p_sys->i_late_frames > 4) )
469     {
470         b_drawpicture = 0;
471         if( p_sys->i_late_frames < 12 )
472         {
473             p_sys->p_context->skip_frame =
474                     (p_sys->i_skip_frame <= AVDISCARD_BIDIR) ?
475                     AVDISCARD_BIDIR : p_sys->i_skip_frame;
476         }
477         else
478         {
479             /* picture too late, won't decode
480              * but break picture until a new I, and for mpeg4 ...*/
481             p_sys->i_late_frames--; /* needed else it will never be decrease */
482             block_Release( p_block );
483             p_sys->i_buffer = 0;
484             return NULL;
485         }
486     }
487     else
488     {
489         if( p_sys->b_hurry_up )
490             p_sys->p_context->skip_frame = p_sys->i_skip_frame;
491         if( !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
492             b_drawpicture = 1;
493         else
494             b_drawpicture = 0;
495     }
496
497     if( p_sys->p_context->width <= 0 || p_sys->p_context->height <= 0 )
498     {
499         if( p_sys->b_hurry_up )
500             p_sys->p_context->skip_frame = p_sys->i_skip_frame;
501         b_null_size = true;
502     }
503
504     /*
505      * Do the actual decoding now
506      */
507
508     /* Don't forget that ffmpeg requires a little more bytes
509      * that the real frame size */
510     if( p_block->i_buffer > 0 )
511     {
512         p_sys->b_flush = ( p_block->i_flags & BLOCK_FLAG_END_OF_SEQUENCE ) != 0;
513
514         p_sys->i_buffer = p_block->i_buffer;
515         if( p_sys->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE >
516             p_sys->i_buffer_orig )
517         {
518             free( p_sys->p_buffer_orig );
519             p_sys->i_buffer_orig =
520                 p_block->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE;
521             p_sys->p_buffer_orig = malloc( p_sys->i_buffer_orig );
522         }
523         p_sys->p_buffer = p_sys->p_buffer_orig;
524         p_sys->i_buffer = p_block->i_buffer;
525         if( !p_sys->p_buffer )
526         {
527             block_Release( p_block );
528             return NULL;
529         }
530         vlc_memcpy( p_sys->p_buffer, p_block->p_buffer, p_block->i_buffer );
531         memset( p_sys->p_buffer + p_block->i_buffer, 0,
532                 FF_INPUT_BUFFER_PADDING_SIZE );
533
534         p_block->i_buffer = 0;
535     }
536
537     while( p_sys->i_buffer > 0 || p_sys->b_flush )
538     {
539         int i_used, b_gotpicture;
540         picture_t *p_pic;
541
542         i_used = avcodec_decode_video( p_sys->p_context, p_sys->p_ff_pic,
543                                        &b_gotpicture,
544                                        p_sys->i_buffer <= 0 && p_sys->b_flush ? NULL : (uint8_t*)p_sys->p_buffer, p_sys->i_buffer );
545
546         if( b_null_size && p_sys->p_context->width > 0 &&
547             p_sys->p_context->height > 0 &&
548             !p_sys->b_flush )
549         {
550             /* Reparse it to not drop the I frame */
551             b_null_size = false;
552             if( p_sys->b_hurry_up )
553                 p_sys->p_context->skip_frame = p_sys->i_skip_frame;
554             i_used = avcodec_decode_video( p_sys->p_context, p_sys->p_ff_pic,
555                                            &b_gotpicture,
556                                            (uint8_t*)p_sys->p_buffer, p_sys->i_buffer );
557         }
558
559         if( p_sys->b_flush )
560             p_sys->b_first_frame = true;
561
562         if( p_sys->i_buffer <= 0 )
563             p_sys->b_flush = false;
564
565         if( i_used < 0 )
566         {
567             msg_Warn( p_dec, "cannot decode one frame (%d bytes)",
568                       p_sys->i_buffer );
569             block_Release( p_block );
570             return NULL;
571         }
572         else if( i_used > p_sys->i_buffer )
573         {
574             i_used = p_sys->i_buffer;
575         }
576
577         /* Consumed bytes */
578         p_sys->i_buffer -= i_used;
579         p_sys->p_buffer += i_used;
580
581         /* Nothing to display */
582         if( !b_gotpicture )
583         {
584             if( i_used == 0 ) break;
585             continue;
586         }
587
588         /* Set the PTS */
589         if( p_sys->p_ff_pic->pts )
590             p_sys->i_pts = p_sys->p_ff_pic->pts;
591
592         /* Update frame late count (except when doing preroll) */
593         if( p_sys->i_pts && decoder_GetDisplayDate(p_dec, p_sys->i_pts) <= mdate() &&
594             !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
595         {
596             p_sys->i_late_frames++;
597             if( p_sys->i_late_frames == 1 )
598                 p_sys->i_late_frames_start = mdate();
599         }
600         else
601         {
602             p_sys->i_late_frames = 0;
603         }
604
605         if( !b_drawpicture || !p_sys->p_ff_pic->linesize[0] )
606         {
607             /* Do not display the picture */
608             p_pic = (picture_t *)p_sys->p_ff_pic->opaque;
609             if( !b_drawpicture && p_pic )
610                 p_dec->pf_vout_buffer_del( p_dec, p_pic );
611
612             ffmpeg_NextPts( p_dec );
613             continue;
614         }
615
616         if( !p_sys->p_ff_pic->opaque )
617         {
618             /* Get a new picture */
619             p_pic = ffmpeg_NewPictBuf( p_dec, p_sys->p_context );
620             if( !p_pic )
621             {
622                 block_Release( p_block );
623                 return NULL;
624             }
625
626             /* Fill p_picture_t from AVVideoFrame and do chroma conversion
627              * if needed */
628             ffmpeg_CopyPicture( p_dec, p_pic, p_sys->p_ff_pic );
629         }
630         else
631         {
632             p_pic = (picture_t *)p_sys->p_ff_pic->opaque;
633         }
634
635         /* Sanity check (seems to be needed for some streams) */
636         if( p_sys->p_ff_pic->pict_type == FF_B_TYPE )
637         {
638             p_sys->b_has_b_frames = true;
639         }
640
641         if( !p_dec->fmt_in.video.i_aspect )
642         {
643             /* Fetch again the aspect ratio in case it changed */
644             p_dec->fmt_out.video.i_aspect =
645                 VOUT_ASPECT_FACTOR
646                     * ( av_q2d(p_sys->p_context->sample_aspect_ratio)
647                     * p_sys->p_context->width / p_sys->p_context->height );
648             p_dec->fmt_out.video.i_sar_num
649                 = p_sys->p_context->sample_aspect_ratio.num;
650             p_dec->fmt_out.video.i_sar_den
651                 = p_sys->p_context->sample_aspect_ratio.den;
652
653             if( p_dec->fmt_out.video.i_aspect == 0 )
654             {
655                 p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR
656                     * p_sys->p_context->width / p_sys->p_context->height;
657             }
658         }
659
660         /* Send decoded frame to vout */
661         if( p_sys->i_pts )
662         {
663             int i;
664             p_pic->date = p_sys->i_pts;
665
666             ffmpeg_NextPts( p_dec );
667
668             if( p_sys->b_first_frame )
669             {
670                 /* Hack to force display of still pictures */
671                 p_sys->b_first_frame = false;
672                 p_pic->b_force = true;
673             }
674
675             p_pic->i_nb_fields = 2 + p_sys->p_ff_pic->repeat_pict;
676             p_pic->b_progressive = !p_sys->p_ff_pic->interlaced_frame;
677             p_pic->b_top_field_first = p_sys->p_ff_pic->top_field_first;
678
679             p_pic->i_qstride = p_sys->p_ff_pic->qstride;
680             int i_mb_h = ( p_pic->format.i_height + 15 ) / 16;
681             p_pic->p_q = malloc( p_pic->i_qstride * i_mb_h );
682             memcpy( p_pic->p_q, p_sys->p_ff_pic->qscale_table,
683                     p_pic->i_qstride * i_mb_h );
684             switch( p_sys->p_ff_pic->qscale_type )
685             {
686                 case FF_QSCALE_TYPE_MPEG1:
687                     p_pic->i_qtype = QTYPE_MPEG1;
688                     break;
689                 case FF_QSCALE_TYPE_MPEG2:
690                     p_pic->i_qtype = QTYPE_MPEG2;
691                     break;
692                 case FF_QSCALE_TYPE_H264:
693                     p_pic->i_qtype = QTYPE_H264;
694                     break;
695             }
696
697             return p_pic;
698         }
699         else
700         {
701             p_dec->pf_vout_buffer_del( p_dec, p_pic );
702         }
703     }
704
705     block_Release( p_block );
706     return NULL;
707 }
708
709 /*****************************************************************************
710  * EndVideo: decoder destruction
711  *****************************************************************************
712  * This function is called when the thread ends after a successful
713  * initialization.
714  *****************************************************************************/
715 void EndVideoDec( decoder_t *p_dec )
716 {
717     decoder_sys_t *p_sys = p_dec->p_sys;
718
719     if( p_sys->p_ff_pic ) av_free( p_sys->p_ff_pic );
720     free( p_sys->p_buffer_orig );
721 }
722
723 /*****************************************************************************
724  * ffmpeg_InitCodec: setup codec extra initialization data for ffmpeg
725  *****************************************************************************/
726 static void ffmpeg_InitCodec( decoder_t *p_dec )
727 {
728     decoder_sys_t *p_sys = p_dec->p_sys;
729     int i_size = p_dec->fmt_in.i_extra;
730
731     if( !i_size ) return;
732
733     if( p_sys->i_codec_id == CODEC_ID_SVQ3 )
734     {
735         uint8_t *p;
736
737         p_sys->p_context->extradata_size = i_size + 12;
738         p = p_sys->p_context->extradata  =
739             malloc( p_sys->p_context->extradata_size );
740         if( !p )
741             return;
742
743         memcpy( &p[0],  "SVQ3", 4 );
744         memset( &p[4], 0, 8 );
745         memcpy( &p[12], p_dec->fmt_in.p_extra, i_size );
746
747         /* Now remove all atoms before the SMI one */
748         if( p_sys->p_context->extradata_size > 0x5a &&
749             strncmp( (char*)&p[0x56], "SMI ", 4 ) )
750         {
751             uint8_t *psz = &p[0x52];
752
753             while( psz < &p[p_sys->p_context->extradata_size - 8] )
754             {
755                 int i_size = GetDWBE( psz );
756                 if( i_size <= 1 )
757                 {
758                     /* FIXME handle 1 as long size */
759                     break;
760                 }
761                 if( !strncmp( (char*)&psz[4], "SMI ", 4 ) )
762                 {
763                     memmove( &p[0x52], psz,
764                              &p[p_sys->p_context->extradata_size] - psz );
765                     break;
766                 }
767
768                 psz += i_size;
769             }
770         }
771     }
772     else if( p_dec->fmt_in.i_codec == VLC_FOURCC( 'R', 'V', '1', '0' ) ||
773              p_dec->fmt_in.i_codec == VLC_FOURCC( 'R', 'V', '1', '3' ) ||
774              p_dec->fmt_in.i_codec == VLC_FOURCC( 'R', 'V', '2', '0' ) )
775     {
776         if( p_dec->fmt_in.i_extra == 8 )
777         {
778             p_sys->p_context->extradata_size = 8;
779             p_sys->p_context->extradata = malloc( 8 );
780             if( p_sys->p_context->extradata )
781             {
782                 memcpy( p_sys->p_context->extradata,
783                         p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra );
784                 p_sys->p_context->sub_id = ((uint32_t*)p_dec->fmt_in.p_extra)[1];
785
786                 msg_Warn( p_dec, "using extra data for RV codec sub_id=%08x",
787                           p_sys->p_context->sub_id );
788             }
789         }
790     }
791     else
792     {
793         p_sys->p_context->extradata_size = i_size;
794         p_sys->p_context->extradata =
795             malloc( i_size + FF_INPUT_BUFFER_PADDING_SIZE );
796         if( p_sys->p_context->extradata )
797         {
798             memcpy( p_sys->p_context->extradata,
799                     p_dec->fmt_in.p_extra, i_size );
800             memset( &((uint8_t*)p_sys->p_context->extradata)[i_size],
801                     0, FF_INPUT_BUFFER_PADDING_SIZE );
802         }
803     }
804 }
805
806 /*****************************************************************************
807  * ffmpeg_CopyPicture: copy a picture from ffmpeg internal buffers to a
808  *                     picture_t structure (when not in direct rendering mode).
809  *****************************************************************************/
810 static void ffmpeg_CopyPicture( decoder_t *p_dec,
811                                 picture_t *p_pic, AVFrame *p_ff_pic )
812 {
813     decoder_sys_t *p_sys = p_dec->p_sys;
814
815     if( TestFfmpegChroma( p_sys->p_context->pix_fmt, -1 ) == VLC_SUCCESS )
816     {
817         int i_plane, i_size, i_line;
818         uint8_t *p_dst, *p_src;
819         int i_src_stride, i_dst_stride;
820
821         for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
822         {
823             p_src  = p_ff_pic->data[i_plane];
824             p_dst = p_pic->p[i_plane].p_pixels;
825             i_src_stride = p_ff_pic->linesize[i_plane];
826             i_dst_stride = p_pic->p[i_plane].i_pitch;
827
828             i_size = __MIN( i_src_stride, i_dst_stride );
829             for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines;
830                  i_line++ )
831             {
832                 vlc_memcpy( p_dst, p_src, i_size );
833                 p_src += i_src_stride;
834                 p_dst += i_dst_stride;
835             }
836         }
837     }
838     else
839     {
840         msg_Err( p_dec, "don't know how to convert chroma %i",
841                  p_sys->p_context->pix_fmt );
842         p_dec->b_error = 1;
843     }
844 }
845
846 /*****************************************************************************
847  * ffmpeg_GetFrameBuf: callback used by ffmpeg to get a frame buffer.
848  *****************************************************************************
849  * It is used for direct rendering as well as to get the right PTS for each
850  * decoded picture (even in indirect rendering mode).
851  *****************************************************************************/
852 static void ffmpeg_SetFrameBufferPts( decoder_t *p_dec, AVFrame *p_ff_pic );
853
854 static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
855                                AVFrame *p_ff_pic )
856 {
857     decoder_t *p_dec = (decoder_t *)p_context->opaque;
858     decoder_sys_t *p_sys = p_dec->p_sys;
859     picture_t *p_pic;
860
861     /* Set picture PTS */
862     ffmpeg_SetFrameBufferPts( p_dec, p_ff_pic );
863
864     /* */
865     p_ff_pic->opaque = 0;
866
867     /* Not much to do in indirect rendering mode */
868     if( !p_sys->b_direct_rendering )
869     {
870         return avcodec_default_get_buffer( p_context, p_ff_pic );
871     }
872
873     /* Some codecs set pix_fmt only after the 1st frame has been decoded,
874      * so we need to check for direct rendering again. */
875
876     int i_width = p_sys->p_context->width;
877     int i_height = p_sys->p_context->height;
878     avcodec_align_dimensions( p_sys->p_context, &i_width, &i_height );
879
880     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS ||
881         p_sys->p_context->width % 16 || p_sys->p_context->height % 16 ||
882         /* We only pad picture up to 16 */
883         PAD(p_sys->p_context->width,16) < i_width || PAD(p_sys->p_context->height,16) < i_height ||
884         p_context->pix_fmt == PIX_FMT_PAL8 )
885     {
886         msg_Dbg( p_dec, "disabling direct rendering" );
887         p_sys->b_direct_rendering = 0;
888         return avcodec_default_get_buffer( p_context, p_ff_pic );
889     }
890     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
891
892     /* Get a new picture */
893     //p_sys->p_vout->render.b_allow_modify_pics = 0;
894     p_pic = ffmpeg_NewPictBuf( p_dec, p_sys->p_context );
895     if( !p_pic )
896     {
897         p_sys->b_direct_rendering = 0;
898         return avcodec_default_get_buffer( p_context, p_ff_pic );
899     }
900     p_sys->p_context->draw_horiz_band = NULL;
901
902     p_ff_pic->opaque = (void*)p_pic;
903     p_ff_pic->type = FF_BUFFER_TYPE_USER;
904     p_ff_pic->data[0] = p_pic->p[0].p_pixels;
905     p_ff_pic->data[1] = p_pic->p[1].p_pixels;
906     p_ff_pic->data[2] = p_pic->p[2].p_pixels;
907     p_ff_pic->data[3] = NULL; /* alpha channel but I'm not sure */
908
909     p_ff_pic->linesize[0] = p_pic->p[0].i_pitch;
910     p_ff_pic->linesize[1] = p_pic->p[1].i_pitch;
911     p_ff_pic->linesize[2] = p_pic->p[2].i_pitch;
912     p_ff_pic->linesize[3] = 0;
913
914     if( p_ff_pic->reference != 0 )
915     {
916         p_dec->pf_picture_link( p_dec, p_pic );
917     }
918
919     /* FIXME what is that, should give good value */
920     p_ff_pic->age = 256*256*256*64; // FIXME FIXME from ffmpeg
921
922     return 0;
923 }
924 static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *p_context, AVFrame *p_ff_pic )
925 {
926     decoder_t *p_dec = (decoder_t *)p_context->opaque;
927     int i_ret;
928
929     /* */
930     p_ff_pic->pts = AV_NOPTS_VALUE;
931
932     /* We always use default reget function, it works perfectly fine */
933     i_ret = avcodec_default_reget_buffer( p_context, p_ff_pic );
934
935     /* Set picture PTS if avcodec_default_reget_buffer didn't set it (through a
936      * ffmpeg_GetFrameBuf call) */
937     if( !i_ret && p_ff_pic->pts == AV_NOPTS_VALUE )
938         ffmpeg_SetFrameBufferPts( p_dec, p_ff_pic );
939
940     return i_ret;
941 }
942
943 static void ffmpeg_SetFrameBufferPts( decoder_t *p_dec, AVFrame *p_ff_pic )
944 {
945     decoder_sys_t *p_sys = p_dec->p_sys;
946
947     /* Set picture PTS */
948     if( p_sys->input_pts )
949     {
950         p_ff_pic->pts = p_sys->input_pts;
951     }
952     else if( p_sys->input_dts )
953     {
954         /* Some demuxers only set the dts so let's try to find a useful
955          * timestamp from this */
956         if( !p_sys->p_context->has_b_frames || !p_sys->b_has_b_frames ||
957             !p_ff_pic->reference || !p_sys->i_pts )
958         {
959             p_ff_pic->pts = p_sys->input_dts;
960         }
961         else
962         {
963             p_ff_pic->pts = 0;
964         }
965     }
966     else
967     {
968         p_ff_pic->pts = 0;
969     }
970
971     if( p_sys->i_pts ) /* make sure 1st frame has a pts > 0 */
972     {
973         p_sys->input_pts = p_sys->input_dts = 0;
974     }
975 }
976
977 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *p_context,
978                                     AVFrame *p_ff_pic )
979 {
980     decoder_t *p_dec = (decoder_t *)p_context->opaque;
981     picture_t *p_pic;
982
983     if( !p_ff_pic->opaque )
984     {
985         avcodec_default_release_buffer( p_context, p_ff_pic );
986         return;
987     }
988
989     p_pic = (picture_t*)p_ff_pic->opaque;
990
991     p_ff_pic->data[0] = NULL;
992     p_ff_pic->data[1] = NULL;
993     p_ff_pic->data[2] = NULL;
994     p_ff_pic->data[3] = NULL;
995
996     if( p_ff_pic->reference != 0 )
997     {
998         p_dec->pf_picture_unlink( p_dec, p_pic );
999     }
1000 }
1001
1002 static void ffmpeg_NextPts( decoder_t *p_dec )
1003 {
1004     decoder_sys_t *p_sys = p_dec->p_sys;
1005
1006     if( p_sys->i_pts <= 0 )
1007         return;
1008
1009     /* interpolate the next PTS */
1010     if( p_dec->fmt_in.video.i_frame_rate > 0 &&
1011         p_dec->fmt_in.video.i_frame_rate_base > 0 )
1012     {
1013         p_sys->i_pts += INT64_C(1000000) *
1014             (2 + p_sys->p_ff_pic->repeat_pict) *
1015             p_dec->fmt_in.video.i_frame_rate_base /
1016             (2 * p_dec->fmt_in.video.i_frame_rate);
1017     }
1018     else if( p_sys->p_context->time_base.den > 0 )
1019     {
1020         p_sys->i_pts += INT64_C(1000000) *
1021             (2 + p_sys->p_ff_pic->repeat_pict) *
1022             p_sys->p_context->time_base.num /
1023             (2 * p_sys->p_context->time_base.den);
1024     }
1025 }