WebM Codec SDK
vp8dx.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3  *
4  * Use of this source code is governed by a BSD-style license
5  * that can be found in the LICENSE file in the root of the source
6  * tree. An additional intellectual property rights grant can be found
7  * in the file PATENTS. All contributing project authors may
8  * be found in the AUTHORS file in the root of the source tree.
9  */
10 
11 
21 #ifndef VPX_VP8DX_H_
22 #define VPX_VP8DX_H_
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
28 /* Include controls common to both the encoder and decoder */
29 #include "./vp8.h"
30 
36 extern vpx_codec_iface_t vpx_codec_vp8_dx_algo;
37 extern vpx_codec_iface_t *vpx_codec_vp8_dx(void);
45 extern vpx_codec_iface_t vpx_codec_vp9_dx_algo;
46 extern vpx_codec_iface_t *vpx_codec_vp9_dx(void);
54 extern vpx_codec_iface_t vpx_codec_vp10_dx_algo;
55 extern vpx_codec_iface_t *vpx_codec_vp10_dx(void);
70  VP8D_GET_LAST_REF_UPDATES = VP8_DECODER_CTRL_ID_START,
71 
74 
79 
85  VP8D_SET_DECRYPTOR = VPXD_SET_DECRYPTOR,
86 
91 
96 
99 
106 
116 
123 
124  VP8_DECODER_CTRL_ID_MAX
125 };
126 
130 typedef void (*vpx_decrypt_cb)(void *decrypt_state, const unsigned char *input,
131  unsigned char *output, int count);
132 
137 typedef struct vpx_decrypt_init {
140 
144 
148 
149 
160 #define VPX_CTRL_VP8D_GET_LAST_REF_UPDATES
162 #define VPX_CTRL_VP8D_GET_FRAME_CORRUPTED
164 #define VPX_CTRL_VP8D_GET_LAST_REF_USED
166 #define VPX_CTRL_VPXD_SET_DECRYPTOR
167 VPX_CTRL_USE_TYPE(VP8D_SET_DECRYPTOR, vpx_decrypt_init *)
168 #define VPX_CTRL_VP8D_SET_DECRYPTOR
170 #define VPX_CTRL_VP9D_GET_DISPLAY_SIZE
171 VPX_CTRL_USE_TYPE(VP9D_GET_BIT_DEPTH, unsigned int *)
172 #define VPX_CTRL_VP9D_GET_BIT_DEPTH
174 #define VPX_CTRL_VP9D_GET_FRAME_SIZE
176 #define VPX_CTRL_VP9_INVERT_TILE_DECODE_ORDER
177 
181 #ifdef __cplusplus
182 } // extern "C"
183 #endif
184 
185 #endif // VPX_VP8DX_H_
Definition: vp8dx.h:98
vpx_decrypt_init vp8_decrypt_init
A deprecated alias for vpx_decrypt_init.
Definition: vp8dx.h:147
Definition: vp8dx.h:95
Definition: vp8dx.h:105
struct vpx_decrypt_init vpx_decrypt_init
Structure to hold decryption state.
Definition: vp8dx.h:84
void * decrypt_state
Definition: vp8dx.h:142
#define VPX_CTRL_USE_TYPE(id, typ)
vpx_codec_control type definition macro
Definition: vpx_codec.h:423
void(* vpx_decrypt_cb)(void *decrypt_state, const unsigned char *input, unsigned char *output, int count)
Definition: vp8dx.h:130
Definition: vp8dx.h:70
Definition: vp8dx.h:115
Definition: vp8dx.h:73
const struct vpx_codec_iface vpx_codec_iface_t
Codec interface structure.
Definition: vpx_codec.h:173
vpx_decrypt_cb decrypt_cb
Definition: vp8dx.h:139
Structure to hold decryption state.
Definition: vp8dx.h:137
Provides controls common to both the VP8 encoder and decoder.
Definition: vp8dx.h:78
Definition: vp8dx.h:90
vp8_dec_control_id
VP8 decoder control functions.
Definition: vp8dx.h:66
Definition: vp8dx.h:122