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