FFmpeg
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
libavcodec
hap.h
Go to the documentation of this file.
1
/*
2
* Vidvox Hap
3
* Copyright (C) 2015 Vittorio Giovara <vittorio.giovara@gmail.com>
4
* Copyright (C) 2015 Tom Butterworth <bangnoise@gmail.com>
5
*
6
* This file is part of FFmpeg.
7
*
8
* FFmpeg is free software; you can redistribute it and/or
9
* modify it under the terms of the GNU Lesser General Public
10
* License as published by the Free Software Foundation; either
11
* version 2.1 of the License, or (at your option) any later version.
12
*
13
* FFmpeg is distributed in the hope that it will be useful,
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
* Lesser General Public License for more details.
17
*
18
* You should have received a copy of the GNU Lesser General Public
19
* License along with FFmpeg; if not, write to the Free Software
20
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21
*/
22
23
#ifndef AVCODEC_HAP_H
24
#define AVCODEC_HAP_H
25
26
#include <stdint.h>
27
28
#include "
libavutil/opt.h
"
29
30
#include "
bytestream.h
"
31
#include "
texturedsp.h
"
32
33
enum
HapTextureFormat
{
34
HAP_FMT_RGBDXT1
= 0x0B,
35
HAP_FMT_RGBADXT5
= 0x0E,
36
HAP_FMT_YCOCGDXT5
= 0x0F,
37
};
38
39
enum
HapCompressor
{
40
HAP_COMP_NONE
= 0xA0,
41
HAP_COMP_SNAPPY
= 0xB0,
42
HAP_COMP_COMPLEX
= 0xC0,
43
};
44
45
enum
HapSectionType
{
46
HAP_ST_DECODE_INSTRUCTIONS
= 0x01,
47
HAP_ST_COMPRESSOR_TABLE
= 0x02,
48
HAP_ST_SIZE_TABLE
= 0x03,
49
HAP_ST_OFFSET_TABLE
= 0x04,
50
};
51
52
typedef
struct
HapChunk
{
53
enum
HapCompressor
compressor
;
54
int
compressed_offset
;
55
size_t
compressed_size
;
56
int
uncompressed_offset
;
57
size_t
uncompressed_size
;
58
}
HapChunk
;
59
60
typedef
struct
HapContext
{
61
AVClass
*
class
;
62
63
TextureDSPContext
dxtc
;
64
GetByteContext
gbc
;
65
66
enum
HapTextureFormat
opt_tex_fmt
;
/* Texture type (encoder only) */
67
int
opt_chunk_count
;
/* User-requested chunk count (encoder only) */
68
69
int
chunk_count
;
70
HapChunk
*
chunks
;
71
int
*
chunk_results
;
/* Results from threaded operations */
72
73
int
tex_rat
;
/* Compression ratio */
74
const
uint8_t
*
tex_data
;
/* Compressed texture */
75
uint8_t
*
tex_buf
;
/* Buffer for compressed texture */
76
size_t
tex_size
;
/* Size of the compressed texture */
77
78
size_t
max_snappy
;
/* Maximum compressed size for snappy buffer */
79
80
int
slice_count
;
/* Number of slices for threaded operations */
81
82
/* Pointer to the selected compress or decompress function */
83
int (*
tex_fun
)(
uint8_t
*dst, ptrdiff_t
stride
,
const
uint8_t
*
block
);
84
}
HapContext
;
85
86
/*
87
* Set the number of chunks in the frame. Returns 0 on success or an error if:
88
* - first_in_frame is 0 and the number of chunks has changed
89
* - any other error occurs
90
*/
91
int
ff_hap_set_chunk_count
(
HapContext
*
ctx
,
int
count
,
int
first_in_frame);
92
93
/*
94
* Free resources associated with the context
95
*/
96
av_cold
void
ff_hap_free_context
(
HapContext
*
ctx
);
97
98
#endif
/* AVCODEC_HAP_H */
HapContext
Definition:
hap.h:60
GetByteContext
Definition:
bytestream.h:33
HapContext::chunks
HapChunk * chunks
Definition:
hap.h:70
HapSectionType
HapSectionType
Definition:
hap.h:45
HapContext::tex_fun
int(* tex_fun)(uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
Definition:
hap.h:83
texturedsp.h
Texture block (4x4) module.
HAP_FMT_RGBADXT5
Definition:
hap.h:35
HapChunk::compressed_size
size_t compressed_size
Definition:
hap.h:55
HapChunk::compressed_offset
int compressed_offset
Definition:
hap.h:54
HapCompressor
HapCompressor
Definition:
hap.h:39
HAP_ST_DECODE_INSTRUCTIONS
Definition:
hap.h:46
HAP_COMP_COMPLEX
Definition:
hap.h:42
HapChunk::uncompressed_size
size_t uncompressed_size
Definition:
hap.h:57
block
static int16_t block[64]
Definition:
dct.c:113
uint8_t
uint8_t
Definition:
audio_convert.c:194
av_cold
#define av_cold
Definition:
attributes.h:82
opt.h
AVOptions.
HapContext::dxtc
TextureDSPContext dxtc
Definition:
hap.h:63
HapContext::gbc
GetByteContext gbc
Definition:
hap.h:64
HapContext::chunk_results
int * chunk_results
Definition:
hap.h:71
HAP_ST_OFFSET_TABLE
Definition:
hap.h:49
HapContext::opt_chunk_count
int opt_chunk_count
Definition:
hap.h:67
count
GLsizei count
Definition:
opengl_enc.c:109
bytestream.h
TextureDSPContext
Definition:
texturedsp.h:45
HapChunk::uncompressed_offset
int uncompressed_offset
Definition:
hap.h:56
ctx
AVFormatContext * ctx
Definition:
movenc.c:48
HapContext::max_snappy
size_t max_snappy
Definition:
hap.h:78
HAP_COMP_NONE
Definition:
hap.h:40
HapContext::tex_rat
int tex_rat
Definition:
hap.h:73
HAP_COMP_SNAPPY
Definition:
hap.h:41
HapContext::tex_data
const uint8_t * tex_data
Definition:
hap.h:74
HapContext::chunk_count
int chunk_count
Definition:
hap.h:69
ff_hap_set_chunk_count
int ff_hap_set_chunk_count(HapContext *ctx, int count, int first_in_frame)
Definition:
hap.c:28
AVClass
Describe the class of an AVClass context structure.
Definition:
log.h:67
HapContext::slice_count
int slice_count
Definition:
hap.h:80
HAP_FMT_YCOCGDXT5
Definition:
hap.h:36
HapContext::opt_tex_fmt
enum HapTextureFormat opt_tex_fmt
Definition:
hap.h:66
HapTextureFormat
HapTextureFormat
Definition:
hap.h:33
HapContext::tex_buf
uint8_t * tex_buf
Definition:
hap.h:75
HapContext::tex_size
size_t tex_size
Definition:
hap.h:76
HapChunk
Definition:
hap.h:52
HAP_ST_COMPRESSOR_TABLE
Definition:
hap.h:47
HAP_ST_SIZE_TABLE
Definition:
hap.h:48
ff_hap_free_context
av_cold void ff_hap_free_context(HapContext *ctx)
Definition:
hap.c:50
stride
#define stride
HAP_FMT_RGBDXT1
Definition:
hap.h:34
HapChunk::compressor
enum HapCompressor compressor
Definition:
hap.h:53
Generated on Thu Oct 27 2016 19:33:25 for FFmpeg by
1.8.6