FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
libutvideo.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2012 Derek Buitenhuis
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation;
9  * version 2 of the License.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 /**
22  * @file
23  * Known FOURCCs:
24  * 'ULY0' (YCbCr 4:2:0), 'ULY2' (YCbCr 4:2:2), 'ULRG' (RGB), 'ULRA' (RGBA)
25  */
26 
27 #ifndef AVCODEC_LIBUTVIDEO_H
28 #define AVCODEC_LIBUTVIDEO_H
29 
30 #include <stdlib.h>
31 #include <utvideo/utvideo.h>
32 #include <utvideo/Codec.h>
33 
34 /* Ut Video version 12.0.0 removed the _WIN names, so if those are
35  * absent, redefine them to maintain compatibility with pre-v12 versions.*/
36 #if !defined(UTVF_RGB24_WIN)
37 #define UTVF_RGB24_WIN UTVF_NFCC_BGR_BU
38 #endif
39 
40 #if !defined(UTVF_RGB32_WIN)
41 #define UTVF_RGB32_WIN UTVF_NFCC_BGRA_BU
42 #endif
43 
44 typedef struct {
45  uint32_t version;
46  uint32_t original_format;
47  uint32_t frameinfo_size;
48  uint32_t flags;
49 } UtVideoExtra;
50 
51 typedef struct {
52  CCodec *codec;
53  unsigned int buf_size;
56 
57 #endif /* AVCODEC_LIBUTVIDEO_H */