Skip to content
Snippets Groups Projects
Commit 1efb1ff8 authored by Thomas Guillem's avatar Thomas Guillem Committed by Hugo Beauzée-Luyssen
Browse files

coreaudio: remove invalid assert

Converting 0 frames to 0 ticks is valid.
parent 1cd0c893
No related branches found
No related tags found
1 merge request!861coreaudio: remove invalid assert
Pipeline #156963 passed with stage
in 17 minutes and 52 seconds
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment