]> git.sesse.net Git - vlc/blob - modules/codec/ffmpeg/video.h
2b0171074741ded42b64e1c067adccc78aa39c0e
[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.8 2003/04/26 21:45:26 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
24 typedef struct vdec_thread_s
25 {
26     DECODER_THREAD_COMMON
27
28     AVFrame        *p_ff_pic;
29     BITMAPINFOHEADER    *p_format;
30
31     vout_thread_t       *p_vout;
32
33     /* for post processing */
34 #ifdef LIBAVCODEC_PP
35     pp_context_t        *pp_context;
36     pp_mode_t           *pp_mode;
37 #else
38     uint32_t            i_pp_mode; /* valid only with I420 and YV12 */
39     postprocessing_t    *p_pp;
40 #endif
41
42     /* for frame skipping algo */
43     int b_hurry_up;
44     int i_frame_error;
45     int i_frame_skip;
46     int     i_frame_late;   /* how many decoded frames are late */
47     mtime_t i_frame_late_start;
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 * );