Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
ed3a0254
Commit
ed3a0254
authored
May 12, 2016
by
Andriy Lysnevych
Committed by
Michael Niedermayer
May 13, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/avpacket: Respect payload offset in av_packet_ref
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
77d1e88c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
avpacket.c
libavcodec/avpacket.c
+3
-1
No files found.
libavcodec/avpacket.c
View file @
ed3a0254
...
...
@@ -568,16 +568,18 @@ int av_packet_ref(AVPacket *dst, const AVPacket *src)
if
(
ret
<
0
)
goto
fail
;
memcpy
(
dst
->
buf
->
data
,
src
->
data
,
src
->
size
);
dst
->
data
=
dst
->
buf
->
data
;
}
else
{
dst
->
buf
=
av_buffer_ref
(
src
->
buf
);
if
(
!
dst
->
buf
)
{
ret
=
AVERROR
(
ENOMEM
);
goto
fail
;
}
dst
->
data
=
src
->
data
;
}
dst
->
size
=
src
->
size
;
dst
->
data
=
dst
->
buf
->
data
;
return
0
;
fail
:
av_packet_free_side_data
(
dst
);
...
...
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