Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
b3d5468d
Commit
b3d5468d
authored
17 years ago
by
Reimar Döffinger
Browse files
Options
Downloads
Patches
Plain Diff
Add some const where appropriate
Originally committed as revision 11818 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
6be4042c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavcodec/roqvideo.h
+1
-1
1 addition, 1 deletion
libavcodec/roqvideo.h
libavcodec/roqvideodec.c
+1
-1
1 addition, 1 deletion
libavcodec/roqvideodec.c
with
2 additions
and
2 deletions
libavcodec/roqvideo.h
+
1
−
1
View file @
b3d5468d
...
...
@@ -51,7 +51,7 @@ typedef struct RoqContext {
roq_cell
cb2x2
[
256
];
roq_qcell
cb4x4
[
256
];
unsigned
char
*
buf
;
const
unsigned
char
*
buf
;
int
size
;
int
width
,
height
;
...
...
This diff is collapsed.
Click to expand it.
libavcodec/roqvideodec.c
+
1
−
1
View file @
b3d5468d
...
...
@@ -44,7 +44,7 @@ static void roqvideo_decode_frame(RoqContext *ri)
int
frame_stats
[
2
][
4
]
=
{{
0
},{
0
}};
roq_qcell
*
qcell
;
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
)
{
chunk_id
=
bytestream_get_le16
(
&
buf
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment