Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
d0e384e3
Commit
d0e384e3
authored
Aug 25, 2014
by
Dmitry Kovalev
Committed by
Gerrit Code Review
Aug 25, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Passing const cfg pointer to vpx_codec_{dec,enc}_init_ver()."
parents
42ad07a1
44609657
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
7 deletions
+9
-7
vpx/src/vpx_decoder.c
vpx/src/vpx_decoder.c
+1
-1
vpx/src/vpx_encoder.c
vpx/src/vpx_encoder.c
+1
-1
vpx/vpx_codec.h
vpx/vpx_codec.h
+5
-3
vpx/vpx_decoder.h
vpx/vpx_decoder.h
+1
-1
vpx/vpx_encoder.h
vpx/vpx_encoder.h
+1
-1
No files found.
vpx/src/vpx_decoder.c
View file @
d0e384e3
...
...
@@ -20,7 +20,7 @@
vpx_codec_err_t
vpx_codec_dec_init_ver
(
vpx_codec_ctx_t
*
ctx
,
vpx_codec_iface_t
*
iface
,
vpx_codec_dec_cfg_t
*
cfg
,
const
vpx_codec_dec_cfg_t
*
cfg
,
vpx_codec_flags_t
flags
,
int
ver
)
{
vpx_codec_err_t
res
;
...
...
vpx/src/vpx_encoder.c
View file @
d0e384e3
...
...
@@ -22,7 +22,7 @@
vpx_codec_err_t
vpx_codec_enc_init_ver
(
vpx_codec_ctx_t
*
ctx
,
vpx_codec_iface_t
*
iface
,
vpx_codec_enc_cfg_t
*
cfg
,
const
vpx_codec_enc_cfg_t
*
cfg
,
vpx_codec_flags_t
flags
,
int
ver
)
{
vpx_codec_err_t
res
;
...
...
vpx/vpx_codec.h
View file @
d0e384e3
...
...
@@ -203,9 +203,11 @@ extern "C" {
const
char
*
err_detail
;
/**< Detailed info, if available */
vpx_codec_flags_t
init_flags
;
/**< Flags passed at init time */
union
{
struct
vpx_codec_dec_cfg
*
dec
;
/**< Decoder Configuration Pointer */
struct
vpx_codec_enc_cfg
*
enc
;
/**< Encoder Configuration Pointer */
void
*
raw
;
/**< Decoder Configuration Pointer */
const
struct
vpx_codec_dec_cfg
*
dec
;
/**< Encoder Configuration Pointer */
const
struct
vpx_codec_enc_cfg
*
enc
;
const
void
*
raw
;
}
config
;
/**< Configuration pointer aliasing union */
vpx_codec_priv_t
*
priv
;
/**< Algorithm private storage */
}
vpx_codec_ctx_t
;
...
...
vpx/vpx_decoder.h
View file @
d0e384e3
...
...
@@ -135,7 +135,7 @@ extern "C" {
*/
vpx_codec_err_t
vpx_codec_dec_init_ver
(
vpx_codec_ctx_t
*
ctx
,
vpx_codec_iface_t
*
iface
,
vpx_codec_dec_cfg_t
*
cfg
,
const
vpx_codec_dec_cfg_t
*
cfg
,
vpx_codec_flags_t
flags
,
int
ver
);
...
...
vpx/vpx_encoder.h
View file @
d0e384e3
...
...
@@ -715,7 +715,7 @@ extern "C" {
*/
vpx_codec_err_t
vpx_codec_enc_init_ver
(
vpx_codec_ctx_t
*
ctx
,
vpx_codec_iface_t
*
iface
,
vpx_codec_enc_cfg_t
*
cfg
,
const
vpx_codec_enc_cfg_t
*
cfg
,
vpx_codec_flags_t
flags
,
int
ver
);
...
...
Write
Preview
Markdown
is supported
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