]> git.sesse.net Git - vlc/blob - plugins/ffmpeg/ffmpeg.h
* ALL: the first libvlc commit.
[vlc] / plugins / ffmpeg / ffmpeg.h
1 /*****************************************************************************
2  * ffmpeg_vdec.h: video decoder using ffmpeg library
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: ffmpeg.h,v 1.3 2002/06/01 12:31:59 sam 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 /* Pour un flux video */
25 typedef struct bitmapinfoheader_s
26 {
27     u32 i_size; /* size of header */
28     u32 i_width;
29     u32 i_height;
30     u16 i_planes;
31     u16 i_bitcount;
32     u32 i_compression;
33     u32 i_sizeimage;
34     u32 i_xpelspermeter;
35     u32 i_ypelspermeter;
36     u32 i_clrused;
37     u32 i_clrimportant;
38 } bitmapinfoheader_t;
39
40 typedef struct videodec_thread_s
41 {
42     decoder_fifo_t      *p_fifo;    
43
44     bitmapinfoheader_t  format;
45
46     AVCodecContext      context, *p_context;
47     AVCodec             *p_codec;
48     vout_thread_t       *p_vout; 
49
50     char *psz_namecodec;
51     /* private */
52     mtime_t i_pts;
53     int     i_framesize;
54     byte_t  *p_framedata;
55 } videodec_thread_t;