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
451
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
1efb1ff8
Commit
1efb1ff8
authored
3 years ago
by
Thomas Guillem
Committed by
Hugo Beauzée-Luyssen
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
coreaudio: remove invalid assert
Converting 0 frames to 0 ticks is valid.
parent
1cd0c893
No related branches found
Branches containing commit
No related tags found
1 merge request
!861
coreaudio: remove invalid assert
Pipeline
#156963
passed with stage
in 17 minutes and 52 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/audio_output/coreaudio_common.c
+0
-1
0 additions, 1 deletion
modules/audio_output/coreaudio_common.c
with
0 additions
and
1 deletion
modules/audio_output/coreaudio_common.c
+
0
−
1
View file @
1efb1ff8
...
...
@@ -46,7 +46,6 @@ FramesToBytes(struct aout_sys_common *p_sys, uint64_t i_frames)
static
inline
int64_t
TicksToFrames
(
struct
aout_sys_common
*
p_sys
,
vlc_tick_t
i_ticks
)
{
assert
(
i_ticks
!=
VLC_TICK_INVALID
);
return
samples_from_vlc_tick
(
i_ticks
,
p_sys
->
i_rate
);
}
...
...
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