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
b16569d2
Commit
b16569d2
authored
Nov 20, 2009
by
Ramiro Polla
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Indent
Originally committed as revision 20562 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
0584b718
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
imgconvert.c
libavcodec/imgconvert.c
+16
-16
No files found.
libavcodec/imgconvert.c
View file @
b16569d2
...
@@ -883,11 +883,11 @@ int avpicture_layout(const AVPicture* src, enum PixelFormat pix_fmt, int width,
...
@@ -883,11 +883,11 @@ int avpicture_layout(const AVPicture* src, enum PixelFormat pix_fmt, int width,
pix_fmt
==
PIX_FMT_RGB555LE
)
pix_fmt
==
PIX_FMT_RGB555LE
)
w
=
width
*
2
;
w
=
width
*
2
;
else
if
(
pix_fmt
==
PIX_FMT_UYYVYY411
)
else
if
(
pix_fmt
==
PIX_FMT_UYYVYY411
)
w
=
width
+
width
/
2
;
w
=
width
+
width
/
2
;
else
if
(
pix_fmt
==
PIX_FMT_PAL8
)
else
if
(
pix_fmt
==
PIX_FMT_PAL8
)
w
=
width
;
w
=
width
;
else
else
w
=
width
*
(
pf
->
depth
*
pf
->
nb_channels
/
8
);
w
=
width
*
(
pf
->
depth
*
pf
->
nb_channels
/
8
);
data_planes
=
1
;
data_planes
=
1
;
h
=
height
;
h
=
height
;
...
@@ -901,19 +901,19 @@ int avpicture_layout(const AVPicture* src, enum PixelFormat pix_fmt, int width,
...
@@ -901,19 +901,19 @@ int avpicture_layout(const AVPicture* src, enum PixelFormat pix_fmt, int width,
oh
=
h
;
oh
=
h
;
for
(
i
=
0
;
i
<
data_planes
;
i
++
)
{
for
(
i
=
0
;
i
<
data_planes
;
i
++
)
{
if
(
i
==
1
)
{
if
(
i
==
1
)
{
w
=
((
width
>>
pf
->
x_chroma_shift
)
*
pf
->
depth
+
7
)
/
8
;
w
=
((
width
>>
pf
->
x_chroma_shift
)
*
pf
->
depth
+
7
)
/
8
;
h
=
height
>>
pf
->
y_chroma_shift
;
h
=
height
>>
pf
->
y_chroma_shift
;
}
else
if
(
i
==
3
)
{
}
else
if
(
i
==
3
)
{
w
=
ow
;
w
=
ow
;
h
=
oh
;
h
=
oh
;
}
}
s
=
src
->
data
[
i
];
s
=
src
->
data
[
i
];
for
(
j
=
0
;
j
<
h
;
j
++
)
{
for
(
j
=
0
;
j
<
h
;
j
++
)
{
memcpy
(
dest
,
s
,
w
);
memcpy
(
dest
,
s
,
w
);
dest
+=
w
;
dest
+=
w
;
s
+=
src
->
linesize
[
i
];
s
+=
src
->
linesize
[
i
];
}
}
}
}
if
(
pf
->
pixel_type
==
FF_PIXEL_PALETTE
)
if
(
pf
->
pixel_type
==
FF_PIXEL_PALETTE
)
...
...
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