diff options
Diffstat (limited to 'apps/plugins/mpegplayer/mpeg_misc.h')
| -rw-r--r-- | apps/plugins/mpegplayer/mpeg_misc.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_misc.h b/apps/plugins/mpegplayer/mpeg_misc.h index 2da9c2e..6c5a416 100644 --- a/apps/plugins/mpegplayer/mpeg_misc.h +++ b/apps/plugins/mpegplayer/mpeg_misc.h @@ -168,15 +168,6 @@ void stream_scan_normalize(struct stream_scan *sk); * direction, otherwise opposite the scan direction */ void stream_scan_offset(struct stream_scan *sk, off_t by); -/** Audio helpers **/ -static inline int32_t clip_sample(int32_t sample) -{ - if ((int16_t)sample != sample) - sample = 0x7fff ^ (sample >> 31); - - return sample; -} - /** Time helpers **/ struct hms { |