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