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
84ae8936
Commit
84ae8936
authored
Jan 24, 2011
by
Diego Elio Pettenò
Committed by
Ronald S. Bultje
Feb 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make inter_rvlc and intra_rvlc static tables.
Signed-off-by:
Ronald S. Bultje
<
rsbultje@gmail.com
>
parent
ae0f8a1a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
+2
-5
mpeg4data.h
libavcodec/mpeg4data.h
+2
-2
mpeg4video.h
libavcodec/mpeg4video.h
+0
-3
No files found.
libavcodec/mpeg4data.h
View file @
84ae8936
...
...
@@ -115,7 +115,7 @@ RLTable ff_mpeg4_rl_intra = {
};
/* Note this is identical to the intra rvlc except that it is reordered. */
const
uint16_t
inter_rvlc
[
170
][
2
]
=
{
static
const
uint16_t
inter_rvlc
[
170
][
2
]
=
{
{
0x0006
,
3
},{
0x0001
,
4
},{
0x0004
,
5
},{
0x001C
,
7
},
{
0x003C
,
8
},{
0x003D
,
8
},{
0x007C
,
9
},{
0x00FC
,
10
},
{
0x00FD
,
10
},{
0x01FC
,
11
},{
0x01FD
,
11
},{
0x03FC
,
12
},
...
...
@@ -219,7 +219,7 @@ RLTable rvlc_rl_inter = {
inter_rvlc_level
,
};
const
uint16_t
intra_rvlc
[
170
][
2
]
=
{
static
const
uint16_t
intra_rvlc
[
170
][
2
]
=
{
{
0x0006
,
3
},{
0x0007
,
3
},{
0x000A
,
4
},{
0x0009
,
5
},
{
0x0014
,
6
},{
0x0015
,
6
},{
0x0034
,
7
},{
0x0074
,
8
},
{
0x0075
,
8
},{
0x00DD
,
9
},{
0x00EC
,
9
},{
0x01EC
,
10
},
...
...
libavcodec/mpeg4video.h
View file @
84ae8936
...
...
@@ -66,10 +66,7 @@ extern const uint16_t ff_mpeg4_intra_vlc[103][2];
extern
RLTable
ff_mpeg4_rl_intra
;
/* Note this is identical to the intra rvlc except that it is reordered. */
extern
const
uint16_t
inter_rvlc
[
170
][
2
];
extern
RLTable
rvlc_rl_inter
;
extern
const
uint16_t
intra_rvlc
[
170
][
2
];
extern
RLTable
rvlc_rl_intra
;
extern
const
uint16_t
sprite_trajectory_tab
[
15
][
2
];
...
...
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