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
e1659f0c
Commit
e1659f0c
authored
Jun 16, 2007
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix indentation
Originally committed as revision 9336 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
dfdf9e78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
flicvideo.c
libavcodec/flicvideo.c
+4
-4
No files found.
libavcodec/flicvideo.c
View file @
e1659f0c
...
@@ -584,12 +584,12 @@ static int flic_decode_frame_15_16BPP(AVCodecContext *avctx,
...
@@ -584,12 +584,12 @@ static int flic_decode_frame_15_16BPP(AVCodecContext *avctx,
* a second pass over the line here, swapping the bytes.
* a second pass over the line here, swapping the bytes.
*/
*/
#ifdef WORDS_BIGENDIAN
#ifdef WORDS_BIGENDIAN
pixel_ptr
=
y_ptr
;
pixel_ptr
=
y_ptr
;
pixel_countdown
=
s
->
avctx
->
width
;
pixel_countdown
=
s
->
avctx
->
width
;
while
(
pixel_countdown
>
0
)
{
while
(
pixel_countdown
>
0
)
{
*
((
signed
short
*
)(
&
pixels
[
pixel_ptr
]))
=
AV_RL16
(
&
buf
[
pixel_ptr
]);
*
((
signed
short
*
)(
&
pixels
[
pixel_ptr
]))
=
AV_RL16
(
&
buf
[
pixel_ptr
]);
pixel_ptr
+=
2
;
pixel_ptr
+=
2
;
}
}
#endif
#endif
y_ptr
+=
s
->
frame
.
linesize
[
0
];
y_ptr
+=
s
->
frame
.
linesize
[
0
];
}
}
...
...
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