]> git.sesse.net Git - ffmpeg/blob - libavcodec/libutvideo.h
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / libutvideo.h
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 #include <stdlib.h>
28 #include <utvideo/utvideo.h>
29 #include <utvideo/Codec.h>
30
31 typedef struct {
32     uint32_t version;
33     uint32_t original_format;
34     uint32_t frameinfo_size;
35     uint32_t flags;
36 } UtVideoExtra;
37
38 typedef struct {
39     CCodec *codec;
40     unsigned int buf_size;
41     uint8_t *buffer;
42 } UtVideoContext;