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
b86e18fe
Commit
b86e18fe
authored
Sep 08, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
yuv4mpeg: fix potential alignment bug
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
7beadfe1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
yuv4mpeg.c
libavformat/yuv4mpeg.c
+3
-2
No files found.
libavformat/yuv4mpeg.c
View file @
b86e18fe
...
@@ -121,7 +121,7 @@ static int yuv4_write_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -121,7 +121,7 @@ static int yuv4_write_packet(AVFormatContext *s, AVPacket *pkt)
{
{
AVStream
*
st
=
s
->
streams
[
pkt
->
stream_index
];
AVStream
*
st
=
s
->
streams
[
pkt
->
stream_index
];
AVIOContext
*
pb
=
s
->
pb
;
AVIOContext
*
pb
=
s
->
pb
;
AVPicture
*
picture
;
AVPicture
*
picture
,
picture_tmp
;
int
*
first_pkt
=
s
->
priv_data
;
int
*
first_pkt
=
s
->
priv_data
;
int
width
,
height
,
h_chroma_shift
,
v_chroma_shift
;
int
width
,
height
,
h_chroma_shift
,
v_chroma_shift
;
int
i
;
int
i
;
...
@@ -129,7 +129,8 @@ static int yuv4_write_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -129,7 +129,8 @@ static int yuv4_write_packet(AVFormatContext *s, AVPacket *pkt)
char
buf1
[
20
];
char
buf1
[
20
];
uint8_t
*
ptr
,
*
ptr1
,
*
ptr2
;
uint8_t
*
ptr
,
*
ptr1
,
*
ptr2
;
picture
=
(
AVPicture
*
)
pkt
->
data
;
memcpy
(
&
picture_tmp
,
pkt
->
data
,
sizeof
(
AVPicture
));
picture
=
&
picture_tmp
;
/* for the first packet we have to output the header as well */
/* for the first packet we have to output the header as well */
if
(
*
first_pkt
)
{
if
(
*
first_pkt
)
{
...
...
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