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