Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
videolan
vlc
Commits
4b6aa45d
Commit
4b6aa45d
authored
Sep 22, 2008
by
Rafaël Carré
Committed by
Jean-Paul Saman
Nov 15, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hide some internal functions of resizer
Signed-off-by:
Jean-Paul Saman
<
jean-paul.saman@m2x.nl
>
parent
db5b5833
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
modules/codec/davinci/resizer.c
modules/codec/davinci/resizer.c
+3
-3
modules/codec/davinci/resizer.h
modules/codec/davinci/resizer.h
+0
-3
No files found.
modules/codec/davinci/resizer.c
View file @
4b6aa45d
...
...
@@ -29,7 +29,7 @@
#include <assert.h>
void
Resize_coeff
(
decoder_t
*
p_dec
,
static
void
Resize_coeff
(
decoder_t
*
p_dec
,
unsigned
int
*
i_width
,
unsigned
int
*
i_height
)
{
unsigned
int
i_vidw
=
p_dec
->
fmt_out
.
video
.
i_width
;
...
...
@@ -77,7 +77,7 @@ void Resize_coeff( decoder_t *p_dec,
/* open() a framebuffer by its name (NOT device path) */
int
OpenFB
(
const
char
*
psz_name
)
static
int
OpenFB
(
const
char
*
psz_name
)
{
int
i_fd
=
-
1
;
int
i_tries
=
0
;
/* begin with /dev/fb0 */
...
...
@@ -119,7 +119,7 @@ static float bicubic_core( float s )
}
void
get_coeffs
(
short
coefs
[
32
],
unsigned
int
i_in
,
static
void
get_coeffs
(
short
coefs
[
32
],
unsigned
int
i_in
,
unsigned
int
i_out
)
{
assert
(
i_out
>
1
);
...
...
modules/codec/davinci/resizer.h
View file @
4b6aa45d
...
...
@@ -45,9 +45,6 @@ typedef struct
vlc_bool_t
b_direct
;
}
davinci_resizer_t
;
void
Resize_coeff
(
decoder_t
*
,
unsigned
int
*
,
unsigned
int
*
);
int
OpenFB
(
const
char
*
psz_name
);
void
get_coeffs
(
short
[
32
],
unsigned
int
,
unsigned
int
);
void
Resize
(
decoder_t
*
,
vlc_bool_t
,
davinci_resizer_t
*
,
davinci_fb_t
*
,
XDM_BufDesc
);
int
DavinciInit
(
decoder_t
*
,
davinci_fb_t
*
,
davinci_resizer_t
*
);
...
...
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