]> git.sesse.net Git - vlc/blob - modules/codec/avcodec/video.c
Preliminary changes to fix postprocessing. Decoder quantizer settings can now be...
[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             int i;
640             p_pic->date = p_sys->i_pts;
641
642             ffmpeg_NextPts( p_dec, p_block->i_rate );
643
644             if( p_sys->b_first_frame )
645             {
646                 /* Hack to force display of still pictures */
647                 p_sys->b_first_frame = false;
648                 p_pic->b_force = true;
649             }
650
651             p_pic->i_nb_fields = 2 + p_sys->p_ff_pic->repeat_pict;
652             p_pic->b_progressive = !p_sys->p_ff_pic->interlaced_frame;
653             p_pic->b_top_field_first = p_sys->p_ff_pic->top_field_first;
654
655             p_pic->i_qstride = p_sys->p_ff_pic->qstride;
656 #if 1
657             p_pic->p_q = p_sys->p_ff_pic->qscale_table; /* XXX: is this dangerous? shouldn't be since the ff pics are never freed ... but you never know */
658 #else
659             /* FIXME: this leaks p_q */
660             int i_mb_h = ( p_pic->format.i_height + 15 ) / 16;
661             p_pic->p_q = malloc( p_pic->i_qstride * i_mb_h );
662             memcpy( p_pic->p_q, p_sys->p_ff_pic->qscale_table,
663                     p_pic->i_qstride * i_mb_h );
664 #endif
665             switch( p_sys->p_ff_pic->qscale_type )
666             {
667                 case FF_QSCALE_TYPE_MPEG1:
668                     p_pic->i_qtype = QTYPE_MPEG1;
669                     break;
670                 case FF_QSCALE_TYPE_MPEG2:
671                     p_pic->i_qtype = QTYPE_MPEG2;
672                     break;
673                 case FF_QSCALE_TYPE_H264:
674                     p_pic->i_qtype = QTYPE_H264;
675                     break;
676             }
677
678             return p_pic;
679         }
680         else
681         {
682             p_dec->pf_vout_buffer_del( p_dec, p_pic );
683         }
684     }
685
686     block_Release( p_block );
687     return NULL;
688 }
689
690 /*****************************************************************************
691  * EndVideo: decoder destruction
692  *****************************************************************************
693  * This function is called when the thread ends after a successful
694  * initialization.
695  *****************************************************************************/
696 void EndVideoDec( decoder_t *p_dec )
697 {
698     decoder_sys_t *p_sys = p_dec->p_sys;
699
700     if( p_sys->p_ff_pic ) av_free( p_sys->p_ff_pic );
701     free( p_sys->p_buffer_orig );
702 }
703
704 /*****************************************************************************
705  * ffmpeg_InitCodec: setup codec extra initialization data for ffmpeg
706  *****************************************************************************/
707 static void ffmpeg_InitCodec( decoder_t *p_dec )
708 {
709     decoder_sys_t *p_sys = p_dec->p_sys;
710     int i_size = p_dec->fmt_in.i_extra;
711
712     if( !i_size ) return;
713
714     if( p_sys->i_codec_id == CODEC_ID_SVQ3 )
715     {
716         uint8_t *p;
717
718         p_sys->p_context->extradata_size = i_size + 12;
719         p = p_sys->p_context->extradata  =
720             malloc( p_sys->p_context->extradata_size );
721         if( !p )
722             return;
723
724         memcpy( &p[0],  "SVQ3", 4 );
725         memset( &p[4], 0, 8 );
726         memcpy( &p[12], p_dec->fmt_in.p_extra, i_size );
727
728         /* Now remove all atoms before the SMI one */
729         if( p_sys->p_context->extradata_size > 0x5a &&
730             strncmp( (char*)&p[0x56], "SMI ", 4 ) )
731         {
732             uint8_t *psz = &p[0x52];
733
734             while( psz < &p[p_sys->p_context->extradata_size - 8] )
735             {
736                 int i_size = GetDWBE( psz );
737                 if( i_size <= 1 )
738                 {
739                     /* FIXME handle 1 as long size */
740                     break;
741                 }
742                 if( !strncmp( (char*)&psz[4], "SMI ", 4 ) )
743                 {
744                     memmove( &p[0x52], psz,
745                              &p[p_sys->p_context->extradata_size] - psz );
746                     break;
747                 }
748
749                 psz += i_size;
750             }
751         }
752     }
753     else if( p_dec->fmt_in.i_codec == VLC_FOURCC( 'R', 'V', '1', '0' ) ||
754              p_dec->fmt_in.i_codec == VLC_FOURCC( 'R', 'V', '1', '3' ) ||
755              p_dec->fmt_in.i_codec == VLC_FOURCC( 'R', 'V', '2', '0' ) )
756     {
757         if( p_dec->fmt_in.i_extra == 8 )
758         {
759             p_sys->p_context->extradata_size = 8;
760             p_sys->p_context->extradata = malloc( 8 );
761             if( p_sys->p_context->extradata )
762             {
763                 memcpy( p_sys->p_context->extradata,
764                         p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra );
765                 p_sys->p_context->sub_id = ((uint32_t*)p_dec->fmt_in.p_extra)[1];
766
767                 msg_Warn( p_dec, "using extra data for RV codec sub_id=%08x",
768                           p_sys->p_context->sub_id );
769             }
770         }
771     }
772     else
773     {
774         p_sys->p_context->extradata_size = i_size;
775         p_sys->p_context->extradata =
776             malloc( i_size + FF_INPUT_BUFFER_PADDING_SIZE );
777         if( p_sys->p_context->extradata )
778         {
779             memcpy( p_sys->p_context->extradata,
780                     p_dec->fmt_in.p_extra, i_size );
781             memset( &((uint8_t*)p_sys->p_context->extradata)[i_size],
782                     0, FF_INPUT_BUFFER_PADDING_SIZE );
783         }
784     }
785 }
786
787 /*****************************************************************************
788  * ffmpeg_CopyPicture: copy a picture from ffmpeg internal buffers to a
789  *                     picture_t structure (when not in direct rendering mode).
790  *****************************************************************************/
791 static void ffmpeg_CopyPicture( decoder_t *p_dec,
792                                 picture_t *p_pic, AVFrame *p_ff_pic )
793 {
794     decoder_sys_t *p_sys = p_dec->p_sys;
795
796     if( TestFfmpegChroma( p_sys->p_context->pix_fmt, -1 ) == VLC_SUCCESS )
797     {
798         int i_plane, i_size, i_line;
799         uint8_t *p_dst, *p_src;
800         int i_src_stride, i_dst_stride;
801
802         for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
803         {
804             p_src  = p_ff_pic->data[i_plane];
805             p_dst = p_pic->p[i_plane].p_pixels;
806             i_src_stride = p_ff_pic->linesize[i_plane];
807             i_dst_stride = p_pic->p[i_plane].i_pitch;
808
809             i_size = __MIN( i_src_stride, i_dst_stride );
810             for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines;
811                  i_line++ )
812             {
813                 vlc_memcpy( p_dst, p_src, i_size );
814                 p_src += i_src_stride;
815                 p_dst += i_dst_stride;
816             }
817         }
818     }
819     else
820     {
821         msg_Err( p_dec, "don't know how to convert chroma %i",
822                  p_sys->p_context->pix_fmt );
823         p_dec->b_error = 1;
824     }
825 }
826
827 /*****************************************************************************
828  * ffmpeg_GetFrameBuf: callback used by ffmpeg to get a frame buffer.
829  *****************************************************************************
830  * It is used for direct rendering as well as to get the right PTS for each
831  * decoded picture (even in indirect rendering mode).
832  *****************************************************************************/
833 static void ffmpeg_SetFrameBufferPts( decoder_t *p_dec, AVFrame *p_ff_pic );
834
835 static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
836                                AVFrame *p_ff_pic )
837 {
838     decoder_t *p_dec = (decoder_t *)p_context->opaque;
839     decoder_sys_t *p_sys = p_dec->p_sys;
840     picture_t *p_pic;
841
842     /* Set picture PTS */
843     ffmpeg_SetFrameBufferPts( p_dec, p_ff_pic );
844
845     /* */
846     p_ff_pic->opaque = 0;
847
848     /* Not much to do in indirect rendering mode */
849     if( !p_sys->b_direct_rendering )
850     {
851         return avcodec_default_get_buffer( p_context, p_ff_pic );
852     }
853
854     /* Some codecs set pix_fmt only after the 1st frame has been decoded,
855      * so this check is necessary. */
856     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS ||
857         p_sys->p_context->width % 16 || p_sys->p_context->height % 16 )
858     {
859         msg_Dbg( p_dec, "disabling direct rendering" );
860         p_sys->b_direct_rendering = 0;
861         return avcodec_default_get_buffer( p_context, p_ff_pic );
862     }
863     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
864
865     /* Get a new picture */
866     //p_sys->p_vout->render.b_allow_modify_pics = 0;
867     p_pic = ffmpeg_NewPictBuf( p_dec, p_sys->p_context );
868     if( !p_pic )
869     {
870         p_sys->b_direct_rendering = 0;
871         return avcodec_default_get_buffer( p_context, p_ff_pic );
872     }
873     p_sys->p_context->draw_horiz_band = NULL;
874
875     p_ff_pic->opaque = (void*)p_pic;
876     p_ff_pic->type = FF_BUFFER_TYPE_USER;
877     p_ff_pic->data[0] = p_pic->p[0].p_pixels;
878     p_ff_pic->data[1] = p_pic->p[1].p_pixels;
879     p_ff_pic->data[2] = p_pic->p[2].p_pixels;
880     p_ff_pic->data[3] = NULL; /* alpha channel but I'm not sure */
881
882     p_ff_pic->linesize[0] = p_pic->p[0].i_pitch;
883     p_ff_pic->linesize[1] = p_pic->p[1].i_pitch;
884     p_ff_pic->linesize[2] = p_pic->p[2].i_pitch;
885     p_ff_pic->linesize[3] = 0;
886
887     if( p_ff_pic->reference != 0 )
888     {
889         p_dec->pf_picture_link( p_dec, p_pic );
890     }
891
892     /* FIXME what is that, should give good value */
893     p_ff_pic->age = 256*256*256*64; // FIXME FIXME from ffmpeg
894
895     return 0;
896 }
897 static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *p_context, AVFrame *p_ff_pic )
898 {
899     decoder_t *p_dec = (decoder_t *)p_context->opaque;
900
901     /* Set picture PTS */
902     ffmpeg_SetFrameBufferPts( p_dec, p_ff_pic );
903
904     /* We always use default reget function, it works perfectly fine */
905     return avcodec_default_reget_buffer( p_context, p_ff_pic );
906 }
907
908 static void ffmpeg_SetFrameBufferPts( decoder_t *p_dec, AVFrame *p_ff_pic )
909 {
910     decoder_sys_t *p_sys = p_dec->p_sys;
911
912     /* Set picture PTS */
913     if( p_sys->input_pts )
914     {
915         p_ff_pic->pts = p_sys->input_pts;
916     }
917     else if( p_sys->input_dts )
918     {
919         /* Some demuxers only set the dts so let's try to find a useful
920          * timestamp from this */
921         if( !p_sys->p_context->has_b_frames || !p_sys->b_has_b_frames ||
922             !p_ff_pic->reference || !p_sys->i_pts )
923         {
924             p_ff_pic->pts = p_sys->input_dts;
925         }
926         else p_ff_pic->pts = 0;
927     }
928     else p_ff_pic->pts = 0;
929
930     if( p_sys->i_pts ) /* make sure 1st frame has a pts > 0 */
931     {
932         p_sys->input_pts = p_sys->input_dts = 0;
933     }
934 }
935
936 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *p_context,
937                                     AVFrame *p_ff_pic )
938 {
939     decoder_t *p_dec = (decoder_t *)p_context->opaque;
940     picture_t *p_pic;
941
942     if( !p_ff_pic->opaque )
943     {
944         avcodec_default_release_buffer( p_context, p_ff_pic );
945         return;
946     }
947
948     p_pic = (picture_t*)p_ff_pic->opaque;
949
950     p_ff_pic->data[0] = NULL;
951     p_ff_pic->data[1] = NULL;
952     p_ff_pic->data[2] = NULL;
953     p_ff_pic->data[3] = NULL;
954
955     if( p_ff_pic->reference != 0 )
956     {
957         p_dec->pf_picture_unlink( p_dec, p_pic );
958     }
959 }
960
961 static void ffmpeg_NextPts( decoder_t *p_dec, int i_block_rate )
962 {
963     decoder_sys_t *p_sys = p_dec->p_sys;
964
965     if( p_sys->i_pts <= 0 )
966         return;
967
968     /* interpolate the next PTS */
969     if( p_dec->fmt_in.video.i_frame_rate > 0 &&
970         p_dec->fmt_in.video.i_frame_rate_base > 0 )
971     {
972         p_sys->i_pts += INT64_C(1000000) *
973             (2 + p_sys->p_ff_pic->repeat_pict) *
974             p_dec->fmt_in.video.i_frame_rate_base *
975             i_block_rate / INPUT_RATE_DEFAULT /
976             (2 * p_dec->fmt_in.video.i_frame_rate);
977     }
978     else if( p_sys->p_context->time_base.den > 0 )
979     {
980         p_sys->i_pts += INT64_C(1000000) *
981             (2 + p_sys->p_ff_pic->repeat_pict) *
982             p_sys->p_context->time_base.num *
983             i_block_rate / INPUT_RATE_DEFAULT /
984             (2 * p_sys->p_context->time_base.den);
985     }
986 }