Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
e202a2be
Commit
e202a2be
authored
Jul 11, 2013
by
James Zern
Browse files
vp[89]_dx_iface: delete unused function
static mmap_lkup Change-Id: I24aeac1eca8453e28d58bc06925e58efc228a0a6
parent
b088998e
Changes
2
Hide whitespace changes
Inline
Side-by-side
vp8/vp8_dx_iface.c
View file @
e202a2be
...
...
@@ -110,16 +110,6 @@ static void vp8_init_ctx(vpx_codec_ctx_t *ctx, const vpx_codec_mmap_t *mmap)
}
}
static
void
*
mmap_lkup
(
vpx_codec_alg_priv_t
*
ctx
,
unsigned
int
id
)
{
int
i
;
for
(
i
=
0
;
i
<
NELEMENTS
(
ctx
->
mmaps
);
i
++
)
if
(
ctx
->
mmaps
[
i
].
id
==
id
)
return
ctx
->
mmaps
[
i
].
base
;
return
NULL
;
}
static
void
vp8_finalize_mmaps
(
vpx_codec_alg_priv_t
*
ctx
)
{
/* nothing to clean up */
...
...
vp9/vp9_dx_iface.c
View file @
e202a2be
...
...
@@ -92,15 +92,6 @@ static void vp8_init_ctx(vpx_codec_ctx_t *ctx, const vpx_codec_mmap_t *mmap) {
}
}
static
void
*
mmap_lkup
(
vpx_codec_alg_priv_t
*
ctx
,
unsigned
int
id
)
{
int
i
;
for
(
i
=
0
;
i
<
NELEMENTS
(
ctx
->
mmaps
);
i
++
)
if
(
ctx
->
mmaps
[
i
].
id
==
id
)
return
ctx
->
mmaps
[
i
].
base
;
return
NULL
;
}
static
void
vp8_finalize_mmaps
(
vpx_codec_alg_priv_t
*
ctx
)
{
/* nothing to clean up */
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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