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