From c8c70dce5719576648489f9d2bad1cf9b61495a1 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 16 Jun 2013 19:25:10 +0200 Subject: audio: fix af_fmt_seconds_to_bytes Was missing samplerate --- audio/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio/format.h') diff --git a/audio/format.h b/audio/format.h index d7b3b34c42..f3aa3d8af0 100644 --- a/audio/format.h +++ b/audio/format.h @@ -133,7 +133,7 @@ int af_str2fmt_short(bstr str); int af_fmt2bits(int format); // Amount of bytes that contain audio of the given duration, aligned to frames. -int af_fmt_seconds_to_bytes(int format, float seconds, int channels); +int af_fmt_seconds_to_bytes(int format, float seconds, int channels, int samplerate); char* af_fmt2str(int format, char* str, int size); const char* af_fmt2str_short(int format); -- cgit v1.2.3