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