]> git.sesse.net Git - vlc/blob - modules/codec/ffmpeg/video.h
* modules/codec/ffmpeg/video.h: forgot to remove a reference to the old postprocessin...
[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.9 2003/06/17 21:07:50 gbazin 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 #endif
38
39     /* for frame skipping algo */
40     int b_hurry_up;
41     int i_frame_error;
42     int i_frame_skip;
43     int     i_frame_late;   /* how many decoded frames are late */
44     mtime_t i_frame_late_start;
45
46     int i_frame_count;  /* to emulate pts */
47
48     /* for direct rendering */
49     int b_direct_rendering;
50 } vdec_thread_t;
51
52
53 int      E_( InitThread_Video )   ( vdec_thread_t * );
54 void     E_( EndThread_Video )    ( vdec_thread_t * );
55 void     E_( DecodeThread_Video ) ( vdec_thread_t * );