]> git.sesse.net Git - vlc/blob - modules/codec/ffmpeg/video.h
* ffmpeg/video.c: in case of mpeg4 stream search in p_bitmapinfo for
[vlc] / modules / codec / ffmpeg / video.h
1 /*****************************************************************************
2  * video.h: video decoder using ffmpeg library
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  * $Id: video.h,v 1.6 2002/12/10 10:22:04 fenrir Exp $
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23 #if LIBAVCODEC_BUILD >= 4641 && LIBAVCODEC_BUILD < 4645
24 #   define AVFrame AVVideoFrame
25 #endif
26
27 typedef struct vdec_thread_s
28 {
29     DECODER_THREAD_COMMON
30 #if LIBAVCODEC_BUILD >= 4641
31     AVFrame        *p_ff_pic;
32 #else
33     AVPicture           ff_pic, *p_ff_pic;
34 #endif
35     BITMAPINFOHEADER    *p_format;
36
37     vout_thread_t       *p_vout; 
38
39     /* for post processing */
40     u32                 i_pp_mode; /* valid only with I420 and YV12 */
41     postprocessing_t    *p_pp;
42
43     /* for frame skipping algo */
44     int b_hurry_up;
45     int i_frame_error;
46     int i_frame_skip;
47     int i_frame_late;   /* how many decoded frames are late */
48
49     int i_frame_count;  /* to emulate pts */
50
51     /* for direct rendering */
52     int b_direct_rendering;
53 } vdec_thread_t;
54
55
56 int      E_( InitThread_Video )   ( vdec_thread_t * );
57 void     E_( EndThread_Video )    ( vdec_thread_t * );
58 void     E_( DecodeThread_Video ) ( vdec_thread_t * );