summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
authorScott Griepentrog <sgriepentrog@digium.com>2014-09-16 16:32:49 +0000
committerScott Griepentrog <sgriepentrog@digium.com>2014-09-16 16:32:49 +0000
commit79b702f3080c106c3ae4d9046608214fdea63ff9 (patch)
tree40edd93cb02d9430c1a6ea74edb4afd974d9e999 /include/asterisk
parent48d58da883990af3f50557d991228897fefe7b48 (diff)
Voicemail: get correct duration when copying file to vm
Changes made during format improvements resulted in the recording to voicemail option 'm' of the MixMonitor app writing a zero length duration in the msgXXXX.txt file. This change introduces a new function ast_ratestream(), which provides the sample rate of the format associated with the stream, and updates the app_voicemail function for ast_app_copy_recording_to_vm to calculate the right duration. Review: https://reviewboard.asterisk.org/r/3996/ ASTERISK-24328 #close git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@423192 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/file.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/asterisk/file.h b/include/asterisk/file.h
index 3d8d2c97c..c71866ead 100644
--- a/include/asterisk/file.h
+++ b/include/asterisk/file.h
@@ -350,6 +350,13 @@ int ast_stream_rewind(struct ast_filestream *fs, off_t ms);
*/
off_t ast_tellstream(struct ast_filestream *fs);
+/*!
+ * \brief Return the sample rate of the stream's format
+ * \param fs fs to act on
+ * \return sample rate in Hz
+ */
+int ast_ratestream(struct ast_filestream *fs);
+
/*!
* \brief Read a frame from a filestream
* \param s ast_filestream to act on