Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guillaume Martres
aom-rav1e
Commits
8325464a
Commit
8325464a
authored
Apr 16, 2014
by
Dmitry Kovalev
Committed by
Gerrit Code Review
Apr 16, 2014
Browse files
Merge "Renaming VP9D_CONFIG to VP9DecoderConfig."
parents
833ad89f
ab3d8e6f
Changes
3
Hide whitespace changes
Inline
Side-by-side
vp9/decoder/vp9_decoder.c
View file @
8325464a
...
...
@@ -110,7 +110,7 @@ void vp9_initialize_dec() {
}
}
VP9Decoder
*
vp9_decoder_create
(
const
VP9D
_CONFIG
*
oxcf
)
{
VP9Decoder
*
vp9_decoder_create
(
const
VP9D
ecoderConfig
*
oxcf
)
{
VP9Decoder
*
const
pbi
=
vpx_memalign
(
32
,
sizeof
(
*
pbi
));
VP9_COMMON
*
const
cm
=
pbi
?
&
pbi
->
common
:
NULL
;
...
...
vp9/decoder/vp9_decoder.h
View file @
8325464a
...
...
@@ -27,20 +27,20 @@
extern
"C"
{
#endif
typedef
struct
{
typedef
struct
VP9DecoderConfig
{
int
width
;
int
height
;
int
version
;
int
max_threads
;
int
inv_tile_order
;
}
VP9D
_CONFIG
;
}
VP9D
ecoderConfig
;
typedef
struct
VP9Decoder
{
DECLARE_ALIGNED
(
16
,
MACROBLOCKD
,
mb
);
DECLARE_ALIGNED
(
16
,
VP9_COMMON
,
common
);
VP9D
_CONFIG
oxcf
;
VP9D
ecoderConfig
oxcf
;
int64_t
last_time_stamp
;
int
ready_for_new_data
;
...
...
@@ -81,7 +81,7 @@ int vp9_get_reference_dec(struct VP9Decoder *pbi,
int
index
,
YV12_BUFFER_CONFIG
**
fb
);
struct
VP9Decoder
*
vp9_decoder_create
(
const
VP9D
_CONFIG
*
oxcf
);
struct
VP9Decoder
*
vp9_decoder_create
(
const
VP9D
ecoderConfig
*
oxcf
);
void
vp9_decoder_remove
(
struct
VP9Decoder
*
pbi
);
...
...
vp9/vp9_dx_iface.c
View file @
8325464a
...
...
@@ -227,7 +227,7 @@ static void set_ppflags(const vpx_codec_alg_priv_t *ctx,
}
static
void
init_decoder
(
vpx_codec_alg_priv_t
*
ctx
)
{
VP9D
_CONFIG
oxcf
;
VP9D
ecoderConfig
oxcf
;
oxcf
.
width
=
ctx
->
si
.
w
;
oxcf
.
height
=
ctx
->
si
.
h
;
oxcf
.
version
=
9
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment