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
e641f320
Commit
e641f320
authored
Feb 21, 2009
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
indent
Originally committed as revision 17481 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
28499cc8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
rawdec.c
libavcodec/rawdec.c
+3
-3
No files found.
libavcodec/rawdec.c
View file @
e641f320
...
...
@@ -93,8 +93,8 @@ static av_cold int raw_init_decoder(AVCodecContext *avctx)
}
static
void
flip
(
AVCodecContext
*
avctx
,
AVPicture
*
picture
){
picture
->
data
[
0
]
+=
picture
->
linesize
[
0
]
*
(
avctx
->
height
-
1
);
picture
->
linesize
[
0
]
*=
-
1
;
picture
->
data
[
0
]
+=
picture
->
linesize
[
0
]
*
(
avctx
->
height
-
1
);
picture
->
linesize
[
0
]
*=
-
1
;
}
static
int
raw_decode
(
AVCodecContext
*
avctx
,
...
...
@@ -134,7 +134,7 @@ static int raw_decode(AVCodecContext *avctx,
}
if
(
context
->
flip
)
flip
(
avctx
,
picture
);
flip
(
avctx
,
picture
);
if
(
avctx
->
codec_tag
==
MKTAG
(
'Y'
,
'V'
,
'1'
,
'2'
))
{
...
...
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