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
de073550
Commit
de073550
authored
Jan 19, 2012
by
Michael Bradshaw
Committed by
Carl Eugen Hoyos
Jan 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed indexing in libopenjpeg to shorten lines
parent
df42dd73
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
4 deletions
+22
-4
libopenjpegenc.c
libavcodec/libopenjpegenc.c
+22
-4
No files found.
libavcodec/libopenjpegenc.c
View file @
de073550
...
...
@@ -206,6 +206,8 @@ static int libopenjpeg_copy_packed8(AVCodecContext *avctx, AVFrame *frame, opj_i
int
compno
;
int
x
;
int
y
;
int
image_index
;
int
frame_index
;
const
int
numcomps
=
image
->
numcomps
;
for
(
compno
=
0
;
compno
<
numcomps
;
++
compno
)
{
...
...
@@ -217,8 +219,11 @@ static int libopenjpeg_copy_packed8(AVCodecContext *avctx, AVFrame *frame, opj_i
for
(
compno
=
0
;
compno
<
numcomps
;
++
compno
)
{
for
(
y
=
0
;
y
<
avctx
->
height
;
++
y
)
{
image_index
=
y
*
avctx
->
width
;
frame_index
=
y
*
frame
->
linesize
[
0
]
+
compno
;
for
(
x
=
0
;
x
<
avctx
->
width
;
++
x
)
{
image
->
comps
[
compno
].
data
[
y
*
avctx
->
width
+
x
]
=
frame
->
data
[
0
][
y
*
frame
->
linesize
[
0
]
+
x
*
numcomps
+
compno
];
image
->
comps
[
compno
].
data
[
image_index
++
]
=
frame
->
data
[
0
][
frame_index
];
frame_index
+=
numcomps
;
}
}
}
...
...
@@ -231,6 +236,8 @@ static int libopenjpeg_copy_packed16(AVCodecContext *avctx, AVFrame *frame, opj_
int
compno
;
int
x
;
int
y
;
int
image_index
;
int
frame_index
;
const
int
numcomps
=
image
->
numcomps
;
uint16_t
*
frame_ptr
=
(
uint16_t
*
)
frame
->
data
[
0
];
...
...
@@ -243,8 +250,11 @@ static int libopenjpeg_copy_packed16(AVCodecContext *avctx, AVFrame *frame, opj_
for
(
compno
=
0
;
compno
<
numcomps
;
++
compno
)
{
for
(
y
=
0
;
y
<
avctx
->
height
;
++
y
)
{
image_index
=
y
*
avctx
->
width
;
frame_index
=
y
*
(
frame
->
linesize
[
0
]
/
2
)
+
compno
;
for
(
x
=
0
;
x
<
avctx
->
width
;
++
x
)
{
image
->
comps
[
compno
].
data
[
y
*
avctx
->
width
+
x
]
=
frame_ptr
[
y
*
frame
->
linesize
[
0
]
/
2
+
x
*
numcomps
+
compno
];
image
->
comps
[
compno
].
data
[
image_index
++
]
=
frame_ptr
[
frame_index
];
frame_index
+=
numcomps
;
}
}
}
...
...
@@ -259,6 +269,8 @@ static int libopenjpeg_copy_unpacked8(AVCodecContext *avctx, AVFrame *frame, opj
int
y
;
int
width
;
int
height
;
int
image_index
;
int
frame_index
;
const
int
numcomps
=
image
->
numcomps
;
for
(
compno
=
0
;
compno
<
numcomps
;
++
compno
)
{
...
...
@@ -272,8 +284,10 @@ static int libopenjpeg_copy_unpacked8(AVCodecContext *avctx, AVFrame *frame, opj
width
=
avctx
->
width
/
image
->
comps
[
compno
].
dx
;
height
=
avctx
->
height
/
image
->
comps
[
compno
].
dy
;
for
(
y
=
0
;
y
<
height
;
++
y
)
{
image_index
=
y
*
width
;
frame_index
=
y
*
frame
->
linesize
[
compno
];
for
(
x
=
0
;
x
<
width
;
++
x
)
{
image
->
comps
[
compno
].
data
[
y
*
width
+
x
]
=
frame
->
data
[
compno
][
y
*
frame
->
linesize
[
compno
]
+
x
];
image
->
comps
[
compno
].
data
[
image_index
++
]
=
frame
->
data
[
compno
][
frame_index
++
];
}
}
}
...
...
@@ -288,6 +302,8 @@ static int libopenjpeg_copy_unpacked16(AVCodecContext *avctx, AVFrame *frame, op
int
y
;
int
width
;
int
height
;
int
image_index
;
int
frame_index
;
const
int
numcomps
=
image
->
numcomps
;
uint16_t
*
frame_ptr
;
...
...
@@ -303,8 +319,10 @@ static int libopenjpeg_copy_unpacked16(AVCodecContext *avctx, AVFrame *frame, op
height
=
avctx
->
height
/
image
->
comps
[
compno
].
dy
;
frame_ptr
=
(
uint16_t
*
)
frame
->
data
[
compno
];
for
(
y
=
0
;
y
<
height
;
++
y
)
{
image_index
=
y
*
width
;
frame_index
=
y
*
(
frame
->
linesize
[
compno
]
/
2
);
for
(
x
=
0
;
x
<
width
;
++
x
)
{
image
->
comps
[
compno
].
data
[
y
*
width
+
x
]
=
frame_ptr
[
y
*
(
frame
->
linesize
[
compno
]
/
2
)
+
x
];
image
->
comps
[
compno
].
data
[
image_index
++
]
=
frame_ptr
[
frame_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