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
422
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
Merge requests
!5878
apple: avsamplebuffer: check for empty buffers being passed
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
apple: avsamplebuffer: check for empty buffers being passed
advait-0/vlc:buffer_check
into
master
Overview
6
Commits
1
Pipelines
6
Changes
1
Merged
Advait Dhamorikar
requested to merge
advait-0/vlc:buffer_check
into
master
5 months ago
Overview
6
Commits
1
Pipelines
6
Changes
1
Expand
1
0
Merge request reports
Compare
master
version 4
99084b16
5 months ago
version 3
cf0cfed4
5 months ago
version 2
adfb0107
5 months ago
version 1
b0730741
5 months ago
master (base)
and
latest version
latest version
9b737741
1 commit,
5 months ago
version 4
99084b16
1 commit,
5 months ago
version 3
cf0cfed4
1 commit,
5 months ago
version 2
adfb0107
1 commit,
5 months ago
version 1
b0730741
1 commit,
5 months ago
1 file
+
6
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
modules/audio_output/apple/avsamplebuffer.m
+
6
−
0
Options
@@ -253,6 +253,12 @@ customBlock_Free(void *refcon, void *doomedMemoryBlock, size_t sizeInBytes)
_outChainLast
=
&
_outChain
;
CMSampleBufferRef
buffer
=
[
self
wrapBuffer
:
&
block
];
if
(
buffer
==
nil
)
{
vlc_mutex_unlock
(
&
_bufferLock
);
return
;
}
_ptsSamples
+=
CMSampleBufferGetNumSamples
(
buffer
);
[
_renderer
enqueueSampleBuffer
:
buffer
];
Loading