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
305d3d9f
Commit
305d3d9f
authored
Nov 19, 2013
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpeg4videoenc: restore macro parentheses
These were erroneously removed in
8769113a
.
parent
ea9f7173
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mpeg4videoenc.c
libavcodec/mpeg4videoenc.c
+3
-3
No files found.
libavcodec/mpeg4videoenc.c
View file @
305d3d9f
...
...
@@ -42,9 +42,9 @@ static uint8_t uni_mpeg4_intra_rl_len[64 * 64 * 2 * 2];
static
uint32_t
uni_mpeg4_inter_rl_bits
[
64
*
64
*
2
*
2
];
static
uint8_t
uni_mpeg4_inter_rl_len
[
64
*
64
*
2
*
2
];
//#define UNI_MPEG4_ENC_INDEX(last, run, level) (
last * 128 + run * 256 + level
)
//#define UNI_MPEG4_ENC_INDEX(last, run, level) (
last * 128 * 64 + run + level
* 64)
#define UNI_MPEG4_ENC_INDEX(last, run, level) (
last * 128 * 64 + run
* 128 + (level))
//#define UNI_MPEG4_ENC_INDEX(last, run, level) (
(last) * 128 + (run) * 256 + (level)
)
//#define UNI_MPEG4_ENC_INDEX(last, run, level) (
(last) * 128 * 64 + (run) + (level)
* 64)
#define UNI_MPEG4_ENC_INDEX(last, run, level) (
(last) * 128 * 64 + (run)
* 128 + (level))
/* mpeg4
* inter
...
...
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