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
b3d5468d
Commit
b3d5468d
authored
Feb 02, 2008
by
Reimar Döffinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some const where appropriate
Originally committed as revision 11818 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
6be4042c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
roqvideo.h
libavcodec/roqvideo.h
+1
-1
roqvideodec.c
libavcodec/roqvideodec.c
+1
-1
No files found.
libavcodec/roqvideo.h
View file @
b3d5468d
...
@@ -51,7 +51,7 @@ typedef struct RoqContext {
...
@@ -51,7 +51,7 @@ typedef struct RoqContext {
roq_cell
cb2x2
[
256
];
roq_cell
cb2x2
[
256
];
roq_qcell
cb4x4
[
256
];
roq_qcell
cb4x4
[
256
];
unsigned
char
*
buf
;
const
unsigned
char
*
buf
;
int
size
;
int
size
;
int
width
,
height
;
int
width
,
height
;
...
...
libavcodec/roqvideodec.c
View file @
b3d5468d
...
@@ -44,7 +44,7 @@ static void roqvideo_decode_frame(RoqContext *ri)
...
@@ -44,7 +44,7 @@ static void roqvideo_decode_frame(RoqContext *ri)
int
frame_stats
[
2
][
4
]
=
{{
0
},{
0
}};
int
frame_stats
[
2
][
4
]
=
{{
0
},{
0
}};
roq_qcell
*
qcell
;
roq_qcell
*
qcell
;
const
unsigned
char
*
buf
=
ri
->
buf
;
const
unsigned
char
*
buf
=
ri
->
buf
;
unsigned
char
*
buf_end
=
ri
->
buf
+
ri
->
size
;
const
unsigned
char
*
buf_end
=
ri
->
buf
+
ri
->
size
;
while
(
buf
<
buf_end
)
{
while
(
buf
<
buf_end
)
{
chunk_id
=
bytestream_get_le16
(
&
buf
);
chunk_id
=
bytestream_get_le16
(
&
buf
);
...
...
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