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