Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
910b9f30
Commit
910b9f30
authored
May 27, 2010
by
David Conrad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add const to ff_emulated_edge_mc
Originally committed as revision 23348 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
94b303ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dsputil.c
libavcodec/dsputil.c
+1
-1
dsputil.h
libavcodec/dsputil.h
+1
-1
No files found.
libavcodec/dsputil.c
View file @
910b9f30
...
...
@@ -369,7 +369,7 @@ static void draw_edges_c(uint8_t *buf, int wrap, int width, int height, int w)
* @param w width of the source buffer
* @param h height of the source buffer
*/
void
ff_emulated_edge_mc
(
uint8_t
*
buf
,
uint8_t
*
src
,
int
linesize
,
int
block_w
,
int
block_h
,
void
ff_emulated_edge_mc
(
uint8_t
*
buf
,
const
uint8_t
*
src
,
int
linesize
,
int
block_w
,
int
block_h
,
int
src_x
,
int
src_y
,
int
w
,
int
h
){
int
x
,
y
;
int
start_y
,
start_x
,
end_y
,
end_x
;
...
...
libavcodec/dsputil.h
View file @
910b9f30
...
...
@@ -197,7 +197,7 @@ typedef struct ScanTable{
void
ff_init_scantable
(
uint8_t
*
,
ScanTable
*
st
,
const
uint8_t
*
src_scantable
);
void
ff_emulated_edge_mc
(
uint8_t
*
buf
,
uint8_t
*
src
,
int
linesize
,
void
ff_emulated_edge_mc
(
uint8_t
*
buf
,
const
uint8_t
*
src
,
int
linesize
,
int
block_w
,
int
block_h
,
int
src_x
,
int
src_y
,
int
w
,
int
h
);
...
...
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