64#if !defined(OGG_THEORA_CODEC_HEADER)
65# define OGG_THEORA_CODEC_HEADER (1)
68#if defined(__cplusplus)
79#define TH_EINVAL (-10)
81#define TH_EBADHEADER (-20)
83#define TH_ENOTFORMAT (-21)
85#define TH_EVERSION (-22)
89#define TH_EBADPACKET (-24)
93#define TH_DUPFRAME (1)
413 ogg_uint16_t dc_scale[64];
415 ogg_uint16_t ac_scale[64];
417 unsigned char loop_filter_limits[64];
425#define TH_NHUFFMAN_TABLES (80)
427#define TH_NDCT_TOKENS (32)
601#if defined(__cplusplus)
int th_packet_isheader(ogg_packet *_op)
Determines whether a Theora packet is a header or not.
th_img_plane th_ycbcr_buffer[3]
A complete image buffer for an uncompressed frame.
Definition: codec.h:170
void th_info_init(th_info *_info)
Initializes a th_info structure.
th_colorspace
The currently defined color space tags.
Definition: codec.h:100
@ TH_CS_ITU_REC_470BG
A color space designed for PAL/SECAM content.
Definition: codec.h:107
@ TH_CS_NSPACES
The total number of currently defined color spaces.
Definition: codec.h:109
@ TH_CS_ITU_REC_470M
A color space designed for NTSC content.
Definition: codec.h:105
@ TH_CS_UNSPECIFIED
The color space was not specified at the encoder.
Definition: codec.h:103
const char * th_version_string(void)
Retrieves a human-readable string to identify the library vendor and version.
th_pixel_fmt
The currently defined pixel format tags.
Definition: codec.h:116
@ TH_PF_422
Chroma decimation by 2 in the X direction (4:2:2).
Definition: codec.h:126
@ TH_PF_444
No chroma decimation (4:4:4).
Definition: codec.h:129
@ TH_PF_NFORMATS
The total number of currently defined pixel formats.
Definition: codec.h:131
@ TH_PF_RSVD
Currently reserved.
Definition: codec.h:122
@ TH_PF_420
Chroma decimation by 2 in both the X and Y directions (4:2:0).
Definition: codec.h:120
unsigned char th_quant_base[64]
A single base matrix.
Definition: codec.h:340
void th_comment_add(th_comment *_tc, const char *_comment)
Add a comment to an initialized th_comment structure.
void th_comment_init(th_comment *_tc)
Initialize a th_comment structure.
double th_granule_time(void *_encdec, ogg_int64_t _granpos)
Converts a granule position to an absolute time in seconds.
ogg_int64_t th_granule_frame(void *_encdec, ogg_int64_t _granpos)
Converts a granule position to an absolute frame index, starting at 0.
struct th_comment th_comment
The comment information.
char * th_comment_query(th_comment *_tc, const char *_tag, int _count)
Look up a comment value by its tag.
int th_comment_query_count(th_comment *_tc, const char *_tag)
Look up the number of instances of a tag.
void th_info_clear(th_info *_info)
Clears a th_info structure.
ogg_uint32_t th_version_number(void)
Retrieves the library version number.
void th_comment_add_tag(th_comment *_tc, const char *_tag, const char *_val)
Add a comment to an initialized th_comment structure.
void th_comment_clear(th_comment *_tc)
Clears a th_comment structure.
int th_packet_iskeyframe(ogg_packet *_op)
Determines whether a theora packet is a key frame or not.
A Huffman code for a Theora DCT token.
Definition: codec.h:440
ogg_uint32_t pattern
The bit pattern for the code, with the LSbit of the pattern aligned in the LSbit of the word.
Definition: codec.h:443
int nbits
The number of bits in the code.
Definition: codec.h:446
A buffer for a single color plane in an uncompressed image.
Definition: codec.h:144
int height
The height of this plane.
Definition: codec.h:148
int width
The width of this plane.
Definition: codec.h:146
int stride
The offset in bytes between successive rows.
Definition: codec.h:150
unsigned char * data
A pointer to the beginning of the first row.
Definition: codec.h:152
Theora bitstream information.
Definition: codec.h:206
ogg_uint32_t aspect_denominator
Definition: codec.h:255
int target_bitrate
The target bit-rate in bits per second.
Definition: codec.h:264
ogg_uint32_t fps_numerator
Definition: codec.h:242
th_pixel_fmt pixel_fmt
The pixel format.
Definition: codec.h:260
ogg_uint32_t pic_width
The displayed picture width.
Definition: codec.h:222
ogg_uint32_t pic_x
The X offset of the displayed picture.
Definition: codec.h:229
ogg_uint32_t aspect_numerator
Definition: codec.h:254
unsigned char version_major
Definition: codec.h:210
int keyframe_granule_shift
The amount to shift to extract the last keyframe number from the granule position.
Definition: codec.h:298
ogg_uint32_t frame_height
The encoded frame height.
Definition: codec.h:219
ogg_uint32_t frame_width
The encoded frame width.
Definition: codec.h:216
ogg_uint32_t pic_height
The displayed picture height.
Definition: codec.h:225
ogg_uint32_t pic_y
The Y offset of the displayed picture.
Definition: codec.h:237
th_colorspace colorspace
The color space.
Definition: codec.h:258
int quality
The target quality level.
Definition: codec.h:284
ogg_uint32_t fps_denominator
Definition: codec.h:243
unsigned char version_minor
Definition: codec.h:211
unsigned char version_subminor
Definition: codec.h:212
A complete set of quantization parameters.
Definition: codec.h:411
A set of qi ranges.
Definition: codec.h:343
const th_quant_base * base_matrices
nranges +1 base matrices.
Definition: codec.h:351
int nranges
The number of ranges in the set.
Definition: codec.h:345
const int * sizes
The size of each of the nranges ranges.
Definition: codec.h:348