Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
454
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
5a1e47b0
Commit
5a1e47b0
authored
3 years ago
by
Thomas Guillem
Browse files
Options
Downloads
Patches
Plain Diff
frame: use vlc_frame_CopyProperties instead of BlockMetaCopy
parent
543d402e
No related branches found
Branches containing commit
No related tags found
1 merge request
!748
core: frame: add ancillary support
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/misc/frame.c
+4
-11
4 additions, 11 deletions
src/misc/frame.c
with
4 additions
and
11 deletions
src/misc/frame.c
+
4
−
11
View file @
5a1e47b0
...
...
@@ -87,16 +87,6 @@ static const struct vlc_frame_callbacks vlc_frame_generic_cbs =
vlc_frame_generic_Release
,
};
static
void
BlockMetaCopy
(
vlc_frame_t
*
restrict
out
,
const
vlc_frame_t
*
in
)
{
out
->
p_next
=
in
->
p_next
;
out
->
i_nb_samples
=
in
->
i_nb_samples
;
out
->
i_dts
=
in
->
i_dts
;
out
->
i_pts
=
in
->
i_pts
;
out
->
i_flags
=
in
->
i_flags
;
out
->
i_length
=
in
->
i_length
;
}
/** Initial memory alignment of data frame.
* @note This must be a multiple of sizeof(void*) and a power of two.
* libavcodec AVX optimizations require at least 32-bytes. */
...
...
@@ -149,7 +139,10 @@ static vlc_frame_t *vlc_frame_ReallocDup( vlc_frame_t *frame, ssize_t i_prebody,
if
(
frame
->
i_buffer
>
0
)
memcpy
(
p_rea
->
p_buffer
+
i_prebody
,
frame
->
p_buffer
,
frame
->
i_buffer
);
BlockMetaCopy
(
p_rea
,
frame
);
p_rea
->
p_next
=
frame
->
p_next
;
vlc_frame_CopyProperties
(
p_rea
,
frame
);
vlc_frame_Release
(
frame
);
return
p_rea
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment