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
e9ca85e7
Commit
e9ca85e7
authored
Feb 15, 2012
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lagarith: Add ff_ prefix to lag_rac_init
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
c8e1b2fb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
lagarith.c
libavcodec/lagarith.c
+1
-1
lagarithrac.c
libavcodec/lagarithrac.c
+1
-1
lagarithrac.h
libavcodec/lagarithrac.h
+1
-1
No files found.
libavcodec/lagarith.c
View file @
e9ca85e7
...
...
@@ -382,7 +382,7 @@ static int lag_decode_arith_plane(LagarithContext *l, uint8_t *dst,
if
(
lag_read_prob_header
(
&
rac
,
&
gb
)
<
0
)
return
-
1
;
lag_rac_init
(
&
rac
,
&
gb
,
length
-
stride
);
ff_
lag_rac_init
(
&
rac
,
&
gb
,
length
-
stride
);
for
(
i
=
0
;
i
<
height
;
i
++
)
read
+=
lag_decode_line
(
l
,
&
rac
,
dst
+
(
i
*
stride
),
width
,
...
...
libavcodec/lagarithrac.c
View file @
e9ca85e7
...
...
@@ -30,7 +30,7 @@
#include "get_bits.h"
#include "lagarithrac.h"
void
lag_rac_init
(
lag_rac
*
l
,
GetBitContext
*
gb
,
int
length
)
void
ff_
lag_rac_init
(
lag_rac
*
l
,
GetBitContext
*
gb
,
int
length
)
{
int
i
,
j
;
...
...
libavcodec/lagarithrac.h
View file @
e9ca85e7
...
...
@@ -51,7 +51,7 @@ typedef struct lag_rac {
uint8_t
range_hash
[
256
];
/**< Hash table mapping upper byte to approximate symbol. */
}
lag_rac
;
void
lag_rac_init
(
lag_rac
*
l
,
GetBitContext
*
gb
,
int
length
);
void
ff_
lag_rac_init
(
lag_rac
*
l
,
GetBitContext
*
gb
,
int
length
);
/* TODO: Optimize */
static
inline
void
lag_rac_refill
(
lag_rac
*
l
)
...
...
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