]> git.sesse.net Git - vlc/blob - modules/codec/ffmpeg/video.c
68475444426eac95a10194548dd496a1ffb19ca6
[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     p_pic = p_dec->pf_vout_buffer_new( p_dec );
184
185 #ifdef LIBAVCODEC_PP
186     if( p_sys->p_pp && p_sys->b_pp && !p_sys->b_pp_init )
187     {
188         E_(InitPostproc)( p_dec, p_sys->p_pp, p_context->width,
189                           p_context->height, p_context->pix_fmt );
190         p_sys->b_pp_init = VLC_TRUE;
191     }
192 #endif
193
194     return p_pic;
195 }
196
197 /*****************************************************************************
198  * InitVideo: initialize the video decoder
199  *****************************************************************************
200  * the ffmpeg codec will be opened, some memory allocated. The vout is not yet
201  * opened (done after the first decoded frame).
202  *****************************************************************************/
203 int E_(InitVideoDec)( decoder_t *p_dec, AVCodecContext *p_context,
204                       AVCodec *p_codec, int i_codec_id, char *psz_namecodec )
205 {
206     decoder_sys_t *p_sys;
207     vlc_value_t lockval;
208     vlc_value_t val;
209
210     var_Get( p_dec->p_libvlc, "avcodec", &lockval );
211
212     /* Allocate the memory needed to store the decoder's structure */
213     if( ( p_dec->p_sys = p_sys =
214           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
215     {
216         msg_Err( p_dec, "out of memory" );
217         return VLC_EGENERIC;
218     }
219
220     p_dec->p_sys->p_context = p_context;
221     p_dec->p_sys->p_codec = p_codec;
222     p_dec->p_sys->i_codec_id = i_codec_id;
223     p_dec->p_sys->psz_namecodec = psz_namecodec;
224     p_sys->p_ff_pic = avcodec_alloc_frame();
225
226     /* ***** Fill p_context with init values ***** */
227     p_sys->p_context->codec_tag = ffmpeg_CodecTag( p_dec->fmt_in.i_codec );
228     p_sys->p_context->width  = p_dec->fmt_in.video.i_width;
229     p_sys->p_context->height = p_dec->fmt_in.video.i_height;
230     p_sys->p_context->bits_per_sample = p_dec->fmt_in.video.i_bits_per_pixel;
231
232     /*  ***** Get configuration of ffmpeg plugin ***** */
233     p_sys->p_context->workaround_bugs =
234         config_GetInt( p_dec, "ffmpeg-workaround-bugs" );
235     p_sys->p_context->error_resilience =
236         config_GetInt( p_dec, "ffmpeg-error-resilience" );
237
238     var_Create( p_dec, "grayscale", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
239     var_Get( p_dec, "grayscale", &val );
240     if( val.b_bool ) p_sys->p_context->flags |= CODEC_FLAG_GRAY;
241
242     var_Create( p_dec, "ffmpeg-vismv", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
243     var_Get( p_dec, "ffmpeg-vismv", &val );
244 #if LIBAVCODEC_BUILD >= 4698
245     if( val.i_int ) p_sys->p_context->debug_mv = val.i_int;
246 #endif
247
248     /* ***** ffmpeg frame skipping ***** */
249     var_Create( p_dec, "ffmpeg-hurry-up", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
250     var_Get( p_dec, "ffmpeg-hurry-up", &val );
251     p_sys->b_hurry_up = val.b_bool;
252
253     /* ***** ffmpeg direct rendering ***** */
254     p_sys->b_direct_rendering = 0;
255     var_Create( p_dec, "ffmpeg-dr", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
256     var_Get( p_dec, "ffmpeg-dr", &val );
257     if( val.b_bool && (p_sys->p_codec->capabilities & CODEC_CAP_DR1) &&
258         ffmpeg_PixFmtToChroma( p_sys->p_context->pix_fmt ) &&
259         /* Apparently direct rendering doesn't work with YUV422P */
260         p_sys->p_context->pix_fmt != PIX_FMT_YUV422P &&
261         /* H264 uses too many reference frames */
262         p_sys->i_codec_id != CODEC_ID_H264 &&
263         !(p_sys->p_context->width % 16) && !(p_sys->p_context->height % 16) &&
264 #if LIBAVCODEC_BUILD >= 4698
265         !p_sys->p_context->debug_mv )
266 #else
267         1 )
268 #endif
269     {
270         /* Some codecs set pix_fmt only after the 1st frame has been decoded,
271          * so we need to do another check in ffmpeg_GetFrameBuf() */
272         p_sys->b_direct_rendering = 1;
273     }
274
275 #ifdef LIBAVCODEC_PP
276     p_sys->p_pp = NULL;
277     p_sys->b_pp = p_sys->b_pp_async = p_sys->b_pp_init = VLC_FALSE;
278     p_sys->p_pp = E_(OpenPostproc)( p_dec, &p_sys->b_pp_async );
279 #endif
280
281     /* ffmpeg doesn't properly release old pictures when frames are skipped */
282     //if( p_sys->b_hurry_up ) p_sys->b_direct_rendering = 0;
283     if( p_sys->b_direct_rendering )
284     {
285         msg_Dbg( p_dec, "using direct rendering" );
286         p_sys->p_context->flags |= CODEC_FLAG_EMU_EDGE;
287     }
288
289     /* Always use our get_buffer wrapper so we can calculate the
290      * PTS correctly */
291     p_sys->p_context->get_buffer = ffmpeg_GetFrameBuf;
292     p_sys->p_context->release_buffer = ffmpeg_ReleaseFrameBuf;
293     p_sys->p_context->opaque = p_dec;
294
295     /* ***** init this codec with special data ***** */
296     if( p_dec->fmt_in.i_extra )
297     {
298         int i_size = p_dec->fmt_in.i_extra;
299
300         if( p_sys->i_codec_id == CODEC_ID_SVQ3 )
301         {
302             uint8_t *p;
303
304             p_sys->p_context->extradata_size = i_size + 12;
305             p = p_sys->p_context->extradata  =
306                 malloc( p_sys->p_context->extradata_size );
307
308             memcpy( &p[0],  "SVQ3", 4 );
309             memset( &p[4], 0, 8 );
310             memcpy( &p[12], p_dec->fmt_in.p_extra, i_size );
311
312             /* Now remove all atoms before the SMI one */
313             if( p_sys->p_context->extradata_size > 0x5a &&
314                 strncmp( &p[0x56], "SMI ", 4 ) )
315             {
316                 uint8_t *psz = &p[0x52];
317
318                 while( psz < &p[p_sys->p_context->extradata_size - 8] )
319                 {
320                     int i_size = GetDWBE( psz );
321                     if( i_size <= 1 )
322                     {
323                         /* FIXME handle 1 as long size */
324                         break;
325                     }
326                     if( !strncmp( &psz[4], "SMI ", 4 ) )
327                     {
328                         memmove( &p[0x52], psz,
329                                  &p[p_sys->p_context->extradata_size] - psz );
330                         break;
331                     }
332
333                     psz += i_size;
334                 }
335             }
336         }
337         else if( p_dec->fmt_in.i_codec == VLC_FOURCC( 'R', 'V', '1', '0' ) ||
338                  p_dec->fmt_in.i_codec == VLC_FOURCC( 'R', 'V', '1', '3' ) ||
339                  p_dec->fmt_in.i_codec == VLC_FOURCC( 'R', 'V', '2', '0' ) )
340         {
341             if( p_dec->fmt_in.i_extra == 8 )
342             {
343                 p_sys->p_context->extradata_size = 8;
344                 p_sys->p_context->extradata = malloc( 8 );
345
346                 memcpy( p_sys->p_context->extradata,
347                         p_dec->fmt_in.p_extra,
348                         p_dec->fmt_in.i_extra );
349                 p_sys->p_context->sub_id= ((uint32_t*)p_dec->fmt_in.p_extra)[1];
350
351                 msg_Warn( p_dec, "using extra data for RV codec sub_id=%08x",
352                           p_sys->p_context->sub_id );
353             }
354         }
355         else if( p_dec->fmt_in.i_codec != VLC_FOURCC( 'a', 'v', 'c', '1' ) )
356         {
357             p_sys->p_context->extradata_size = i_size;
358             p_sys->p_context->extradata =
359                 malloc( i_size + FF_INPUT_BUFFER_PADDING_SIZE );
360             memcpy( p_sys->p_context->extradata,
361                     p_dec->fmt_in.p_extra, i_size );
362             memset( &((uint8_t*)p_sys->p_context->extradata)[i_size],
363                     0, FF_INPUT_BUFFER_PADDING_SIZE );
364         }
365     }
366
367     /* ***** misc init ***** */
368     p_sys->input_pts = p_sys->input_dts = 0;
369     p_sys->i_pts = 0;
370     p_sys->b_has_b_frames = VLC_FALSE;
371     p_sys->b_first_frame = VLC_TRUE;
372     p_sys->i_late_frames = 0;
373     p_sys->i_buffer = 0;
374     p_sys->i_buffer_orig = 1;
375     p_sys->p_buffer_orig = p_sys->p_buffer = malloc( p_sys->i_buffer );
376
377     /* Set output properties */
378     p_dec->fmt_out.i_cat = VIDEO_ES;
379     p_dec->fmt_out.i_codec = ffmpeg_PixFmtToChroma( p_context->pix_fmt );
380
381     /* Setup palette */
382 #if LIBAVCODEC_BUILD >= 4688
383     if( p_dec->fmt_in.video.p_palette )
384         p_sys->p_context->palctrl =
385             (AVPaletteControl *)p_dec->fmt_in.video.p_palette;
386     else
387         p_sys->p_context->palctrl = &palette_control;
388 #endif
389
390     /* ***** Open the codec ***** */
391     vlc_mutex_lock( lockval.p_address );
392     if( avcodec_open( p_sys->p_context, p_sys->p_codec ) < 0 )
393     {
394         vlc_mutex_unlock( lockval.p_address );
395         msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
396         return VLC_EGENERIC;
397     }
398     vlc_mutex_unlock( lockval.p_address );
399     msg_Dbg( p_dec, "ffmpeg codec (%s) started", p_sys->psz_namecodec );
400
401
402     return VLC_SUCCESS;
403 }
404
405 /*****************************************************************************
406  * DecodeVideo: Called to decode one or more frames
407  *****************************************************************************/
408 picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block )
409 {
410     decoder_sys_t *p_sys = p_dec->p_sys;
411     int b_drawpicture;
412     int b_null_size = VLC_FALSE;
413     block_t *p_block;
414
415     if( !pp_block || !*pp_block ) return NULL;
416
417     p_block = *pp_block;
418
419     if( p_block->i_flags & BLOCK_FLAG_DISCONTINUITY )
420     {
421         p_sys->i_buffer = 0;
422         p_sys->i_pts = 0; /* To make sure we recover properly */
423
424         p_sys->input_pts = p_sys->input_dts = 0;
425         p_sys->i_late_frames = 0;
426
427         block_Release( p_block );
428         return NULL;
429     }
430
431     if( !p_dec->b_pace_control && p_sys->i_late_frames > 0 &&
432         mdate() - p_sys->i_late_frames_start > I64C(5000000) )
433     {
434         if( p_sys->i_pts )
435         {
436             msg_Err( p_dec, "more than 5 seconds of late video -> "
437                      "dropping frame (computer too slow ?)" );
438             p_sys->i_pts = 0; /* To make sure we recover properly */
439         }
440         block_Release( p_block );
441         p_sys->i_late_frames--;
442         return NULL;
443     }
444
445     if( p_block->i_pts > 0 || p_block->i_dts > 0 )
446     {
447         p_sys->input_pts = p_block->i_pts;
448         p_sys->input_dts = p_block->i_dts;
449
450         /* Make sure we don't reuse the same timestamps twice */
451         p_block->i_pts = p_block->i_dts = 0;
452     }
453
454     /* TODO implement it in a better way */
455     /* A good idea could be to decode all I pictures and see for the other */
456     if( !p_dec->b_pace_control &&
457         p_sys->b_hurry_up && p_sys->i_late_frames > 4 )
458     {
459         b_drawpicture = 0;
460         if( p_sys->i_late_frames < 8 )
461         {
462             p_sys->p_context->hurry_up = 2;
463         }
464         else
465         {
466             /* picture too late, won't decode
467              * but break picture until a new I, and for mpeg4 ...*/
468
469             p_sys->i_late_frames--; /* needed else it will never be decrease */
470             block_Release( p_block );
471             p_sys->i_buffer = 0;
472             return NULL;
473         }
474     }
475     else
476     {
477         b_drawpicture = 1;
478         p_sys->p_context->hurry_up = 0;
479     }
480
481
482     if( p_sys->p_context->width <= 0 || p_sys->p_context->height <= 0 )
483     {
484         p_sys->p_context->hurry_up = 5;
485         b_null_size = VLC_TRUE;
486     }
487
488     /*
489      * Do the actual decoding now
490      */
491
492     /* Check if post-processing was enabled */
493     p_sys->b_pp = p_sys->b_pp_async;
494
495     /* Don't forget that ffmpeg requires a little more bytes
496      * that the real frame size */
497     if( p_block->i_buffer > 0 )
498     {
499         p_sys->i_buffer = p_block->i_buffer;
500         if( p_sys->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE >
501             p_sys->i_buffer_orig )
502         {
503             free( p_sys->p_buffer_orig );
504             p_sys->i_buffer_orig =
505                 p_block->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE;
506             p_sys->p_buffer_orig = malloc( p_sys->i_buffer_orig );
507         }
508         p_sys->p_buffer = p_sys->p_buffer_orig;
509         p_sys->i_buffer = p_block->i_buffer;
510         p_dec->p_vlc->pf_memcpy( p_sys->p_buffer, p_block->p_buffer,
511                                  p_block->i_buffer );
512         memset( p_sys->p_buffer + p_block->i_buffer, 0,
513                 FF_INPUT_BUFFER_PADDING_SIZE );
514
515         p_block->i_buffer = 0;
516     }
517
518     while( p_sys->i_buffer > 0 )
519     {
520         int i_used, b_gotpicture;
521         picture_t *p_pic;
522
523         i_used = avcodec_decode_video( p_sys->p_context, p_sys->p_ff_pic,
524                                        &b_gotpicture,
525                                        p_sys->p_buffer, p_sys->i_buffer );
526         if( b_null_size && p_sys->p_context->width > 0 &&
527             p_sys->p_context->height > 0 )
528         {
529             /* Reparse it to not drop the I frame */
530             b_null_size = VLC_FALSE;
531             p_sys->p_context->hurry_up = 0;
532             i_used = avcodec_decode_video( p_sys->p_context, p_sys->p_ff_pic,
533                                            &b_gotpicture,
534                                            p_sys->p_buffer, p_sys->i_buffer );
535         }
536
537         if( i_used < 0 )
538         {
539             msg_Warn( p_dec, "cannot decode one frame (%d bytes)",
540                       p_sys->i_buffer );
541             block_Release( p_block );
542             return NULL;
543         }
544         else if( i_used > p_sys->i_buffer )
545         {
546             i_used = p_sys->i_buffer;
547         }
548
549         /* Consumed bytes */
550         p_sys->i_buffer -= i_used;
551         p_sys->p_buffer += i_used;
552
553         /* Nothing to display */
554         if( !b_gotpicture )
555         {
556             if( i_used == 0 ) break;
557             continue;
558         }
559
560         /* Update frame late count*/
561         if( p_sys->i_pts && p_sys->i_pts <= mdate() )
562         {
563             p_sys->i_late_frames++;
564             if( p_sys->i_late_frames == 1 )
565                 p_sys->i_late_frames_start = mdate();
566         }
567         else
568         {
569             p_sys->i_late_frames = 0;
570         }
571
572         if( !b_drawpicture || !p_sys->p_ff_pic->linesize[0] )
573         {
574             /* Do not display the picture */
575             continue;
576         }
577
578         if( !p_sys->p_ff_pic->opaque )
579         {
580             /* Get a new picture */
581             p_pic = ffmpeg_NewPictBuf( p_dec, p_sys->p_context );
582             if( !p_pic )
583             {
584                 block_Release( p_block );
585                 return NULL;
586             }
587
588             /* Fill p_picture_t from AVVideoFrame and do chroma conversion
589              * if needed */
590             ffmpeg_CopyPicture( p_dec, p_pic, p_sys->p_ff_pic );
591         }
592         else
593         {
594             p_pic = (picture_t *)p_sys->p_ff_pic->opaque;
595         }
596
597         /* Set the PTS */
598         if( p_sys->p_ff_pic->pts ) p_sys->i_pts = p_sys->p_ff_pic->pts;
599
600         /* Sanity check (seems to be needed for some streams ) */
601         if( p_sys->p_ff_pic->pict_type == FF_B_TYPE )
602         {
603             p_sys->b_has_b_frames = VLC_TRUE;
604         }
605
606         /* Send decoded frame to vout */
607         if( p_sys->i_pts )
608         {
609             p_pic->date = p_sys->i_pts;
610
611             /* interpolate the next PTS */
612             if( p_sys->p_context->frame_rate > 0 )
613             {
614                 p_sys->i_pts += I64C(1000000) *
615                     (2 + p_sys->p_ff_pic->repeat_pict) *
616                     p_sys->p_context->frame_rate_base /
617                     (2 * p_sys->p_context->frame_rate);
618             }
619
620             if( p_sys->b_first_frame )
621             {
622                 /* Hack to force display of still pictures */
623                 p_sys->b_first_frame = VLC_FALSE;
624                 p_pic->b_force = VLC_TRUE;
625             }
626
627             p_pic->i_nb_fields = p_sys->p_ff_pic->repeat_pict;
628 #if LIBAVCODEC_BUILD >= 4685
629             p_pic->b_progressive = !p_sys->p_ff_pic->interlaced_frame;
630             p_pic->b_top_field_first = p_sys->p_ff_pic->top_field_first;
631 #endif
632
633             return p_pic;
634         }
635         else
636         {
637             p_dec->pf_vout_buffer_del( p_dec, p_pic );
638         }
639     }
640
641     block_Release( p_block );
642     return NULL;
643 }
644
645 /*****************************************************************************
646  * EndVideo: decoder destruction
647  *****************************************************************************
648  * This function is called when the thread ends after a sucessful
649  * initialization.
650  *****************************************************************************/
651 void E_(EndVideoDec)( decoder_t *p_dec )
652 {
653     decoder_sys_t *p_sys = p_dec->p_sys;
654
655     if( p_sys->p_ff_pic ) free( p_sys->p_ff_pic );
656
657 #ifdef LIBAVCODEC_PP
658     E_(ClosePostproc)( p_dec, p_sys->p_pp );
659 #endif
660
661     free( p_sys->p_buffer_orig );
662 }
663
664 /*****************************************************************************
665  * ffmpeg_CopyPicture: copy a picture from ffmpeg internal buffers to a
666  *                     picture_t structure (when not in direct rendering mode).
667  *****************************************************************************/
668 static void ffmpeg_CopyPicture( decoder_t *p_dec,
669                                 picture_t *p_pic, AVFrame *p_ff_pic )
670 {
671     decoder_sys_t *p_sys = p_dec->p_sys;
672
673     if( ffmpeg_PixFmtToChroma( p_sys->p_context->pix_fmt ) )
674     {
675         int i_plane, i_size, i_line;
676         uint8_t *p_dst, *p_src;
677         int i_src_stride, i_dst_stride;
678
679 #ifdef LIBAVCODEC_PP
680         if( p_sys->p_pp && p_sys->b_pp )
681             E_(PostprocPict)( p_dec, p_sys->p_pp, p_pic, p_ff_pic );
682         else
683 #endif
684         for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
685         {
686             p_src  = p_ff_pic->data[i_plane];
687             p_dst = p_pic->p[i_plane].p_pixels;
688             i_src_stride = p_ff_pic->linesize[i_plane];
689             i_dst_stride = p_pic->p[i_plane].i_pitch;
690
691             i_size = __MIN( i_src_stride, i_dst_stride );
692             for( i_line = 0; i_line < p_pic->p[i_plane].i_lines; i_line++ )
693             {
694                 p_dec->p_vlc->pf_memcpy( p_dst, p_src, i_size );
695                 p_src += i_src_stride;
696                 p_dst += i_dst_stride;
697             }
698         }
699     }
700     else
701     {
702         AVPicture dest_pic;
703         int i;
704
705         /* we need to convert to I420 */
706         switch( p_sys->p_context->pix_fmt )
707         {
708         case PIX_FMT_YUV410P:
709         case PIX_FMT_YUV411P:
710         case PIX_FMT_PAL8:
711             for( i = 0; i < p_pic->i_planes; i++ )
712             {
713                 dest_pic.data[i] = p_pic->p[i].p_pixels;
714                 dest_pic.linesize[i] = p_pic->p[i].i_pitch;
715             }
716             img_convert( &dest_pic, PIX_FMT_YUV420P,
717                          (AVPicture *)p_ff_pic,
718                          p_sys->p_context->pix_fmt,
719                          p_sys->p_context->width,
720                          p_sys->p_context->height );
721             break;
722         default:
723             msg_Err( p_dec, "don't know how to convert chroma %i",
724                      p_sys->p_context->pix_fmt );
725             p_dec->b_error = 1;
726             break;
727         }
728     }
729 }
730
731 /*****************************************************************************
732  * ffmpeg_GetFrameBuf: callback used by ffmpeg to get a frame buffer.
733  *****************************************************************************
734  * It is used for direct rendering as well as to get the right PTS for each
735  * decoded picture (even in indirect rendering mode).
736  *****************************************************************************/
737 static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
738                                AVFrame *p_ff_pic )
739 {
740     decoder_t *p_dec = (decoder_t *)p_context->opaque;
741     decoder_sys_t *p_sys = p_dec->p_sys;
742     picture_t *p_pic;
743
744     /* Set picture PTS */
745     if( p_sys->input_pts )
746     {
747         p_ff_pic->pts = p_sys->input_pts;
748     }
749     else if( p_sys->input_dts )
750     {
751         /* Some demuxers only set the dts so let's try to find a useful
752          * timestamp from this */
753         if( !p_context->has_b_frames || !p_sys->b_has_b_frames ||
754             !p_ff_pic->reference || !p_sys->i_pts )
755         {
756             p_ff_pic->pts = p_sys->input_dts;
757         }
758         else p_ff_pic->pts = 0;
759     }
760     else p_ff_pic->pts = 0;
761
762     if( p_sys->i_pts ) /* make sure 1st frame has a pts > 0 */
763     {
764         p_sys->input_pts = p_sys->input_dts = 0;
765     }
766
767     p_ff_pic->opaque = 0;
768
769     /* Not much to do in indirect rendering mode */
770     if( !p_sys->b_direct_rendering || p_sys->b_pp )
771     {
772         return avcodec_default_get_buffer( p_context, p_ff_pic );
773     }
774
775     /* Some codecs set pix_fmt only after the 1st frame has been decoded,
776      * so this check is necessary. */
777     if( !ffmpeg_PixFmtToChroma( p_context->pix_fmt ) ||
778         p_sys->p_context->width % 16 || p_sys->p_context->height % 16 )
779     {
780         msg_Dbg( p_dec, "disabling direct rendering" );
781         p_sys->b_direct_rendering = 0;
782         return avcodec_default_get_buffer( p_context, p_ff_pic );
783     }
784
785     /* Get a new picture */
786     //p_sys->p_vout->render.b_allow_modify_pics = 0;
787     p_pic = ffmpeg_NewPictBuf( p_dec, p_sys->p_context );
788     if( !p_pic )
789     {
790         p_sys->b_direct_rendering = 0;
791         return avcodec_default_get_buffer( p_context, p_ff_pic );
792     }
793     p_sys->p_context->draw_horiz_band = NULL;
794
795     p_ff_pic->opaque = (void*)p_pic;
796     p_ff_pic->type = FF_BUFFER_TYPE_USER;
797     p_ff_pic->data[0] = p_pic->p[0].p_pixels;
798     p_ff_pic->data[1] = p_pic->p[1].p_pixels;
799     p_ff_pic->data[2] = p_pic->p[2].p_pixels;
800     p_ff_pic->data[3] = NULL; /* alpha channel but I'm not sure */
801
802     p_ff_pic->linesize[0] = p_pic->p[0].i_pitch;
803     p_ff_pic->linesize[1] = p_pic->p[1].i_pitch;
804     p_ff_pic->linesize[2] = p_pic->p[2].i_pitch;
805     p_ff_pic->linesize[3] = 0;
806
807     if( p_ff_pic->reference != 0 )
808     {
809         p_dec->pf_picture_link( p_dec, p_pic );
810     }
811
812     /* FIXME what is that, should give good value */
813     p_ff_pic->age = 256*256*256*64; // FIXME FIXME from ffmpeg
814
815     return 0;
816 }
817
818 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *p_context,
819                                     AVFrame *p_ff_pic )
820 {
821     decoder_t *p_dec = (decoder_t *)p_context->opaque;
822     picture_t *p_pic;
823
824     if( !p_ff_pic->opaque )
825     {
826         avcodec_default_release_buffer( p_context, p_ff_pic );
827         return;
828     }
829
830     p_pic = (picture_t*)p_ff_pic->opaque;
831
832     p_ff_pic->data[0] = NULL;
833     p_ff_pic->data[1] = NULL;
834     p_ff_pic->data[2] = NULL;
835     p_ff_pic->data[3] = NULL;
836
837     if( p_ff_pic->reference != 0 )
838     {
839         p_dec->pf_picture_unlink( p_dec, p_pic );
840     }
841 }