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