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