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
04650579
Commit
04650579
authored
Feb 01, 2008
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more const
Originally committed as revision 11778 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
4a431e9e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
truemotion1.c
libavcodec/truemotion1.c
+3
-3
No files found.
libavcodec/truemotion1.c
View file @
04650579
...
...
@@ -48,7 +48,7 @@ typedef struct TrueMotion1Context {
const
uint8_t
*
mb_change_bits
;
int
mb_change_bits_row_size
;
uint8_t
*
index_stream
;
const
uint8_t
*
index_stream
;
int
index_stream_size
;
int
flags
;
...
...
@@ -603,7 +603,7 @@ static void truemotion1_decode_16bit(TrueMotion1Context *s)
int
keyframe
=
s
->
flags
&
FLAG_KEYFRAME
;
/* these variables are for managing the stream of macroblock change bits */
unsigned
char
*
mb_change_bits
=
s
->
mb_change_bits
;
const
unsigned
char
*
mb_change_bits
=
s
->
mb_change_bits
;
unsigned
char
mb_change_byte
;
unsigned
char
mb_change_byte_mask
;
int
mb_change_index
;
...
...
@@ -729,7 +729,7 @@ static void truemotion1_decode_24bit(TrueMotion1Context *s)
int
keyframe
=
s
->
flags
&
FLAG_KEYFRAME
;
/* these variables are for managing the stream of macroblock change bits */
unsigned
char
*
mb_change_bits
=
s
->
mb_change_bits
;
const
unsigned
char
*
mb_change_bits
=
s
->
mb_change_bits
;
unsigned
char
mb_change_byte
;
unsigned
char
mb_change_byte_mask
;
int
mb_change_index
;
...
...
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