summaryrefslogtreecommitdiff
path: root/src/seq
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2003-08-27 13:54:55 +0000
committerTakashi Iwai <tiwai@suse.de>2003-08-27 13:54:55 +0000
commit093e07cdf8561a022e0dc7b7b4fe34b088b95ade (patch)
tree05f7fb128e1685351a15b04bb3e4c8db25d08a4b /src/seq
parent7a9658e6ba3297ffd4c064dbcfe772664a9aa919 (diff)
fixed typos.
Diffstat (limited to 'src/seq')
-rw-r--r--src/seq/seq.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/seq/seq.c b/src/seq/seq.c
index 40a43ba4..6ffedfc7 100644
--- a/src/seq/seq.c
+++ b/src/seq/seq.c
@@ -1065,7 +1065,7 @@ int snd_seq_port_info_get_port_specified(const snd_seq_port_info_t *info)
* \param info port_info container
* \return 1 if the port updates timestamps of incoming events
*/
-int snd_seq_port_info_get_port_timestamping(const snd_seq_port_info_t *info)
+int snd_seq_port_info_get_timestamping(const snd_seq_port_info_t *info)
{
assert(info);
return (info->flags & SNDRV_SEQ_PORT_FLG_TIMESTAMP) ? 1 : 0;
@@ -1076,7 +1076,7 @@ int snd_seq_port_info_get_port_timestamping(const snd_seq_port_info_t *info)
* \param info port_info container
* \return 1 if the time-stamping is in the real-time mode
*/
-int snd_seq_port_info_get_port_timestamp_real(const snd_seq_port_info_t *info)
+int snd_seq_port_info_get_timestamp_real(const snd_seq_port_info_t *info)
{
assert(info);
return (info->flags & SNDRV_SEQ_PORT_FLG_TIME_REAL) ? 1 : 0;
@@ -1087,7 +1087,7 @@ int snd_seq_port_info_get_port_timestamp_real(const snd_seq_port_info_t *info)
* \param info port_info container
* \return the queue id to get the timestamps
*/
-int snd_seq_port_info_get_port_timestamp_queue(const snd_seq_port_info_t *info)
+int snd_seq_port_info_get_timestamp_queue(const snd_seq_port_info_t *info)
{
assert(info);
return info->time_queue;
@@ -1211,7 +1211,7 @@ void snd_seq_port_info_set_port_specified(snd_seq_port_info_t *info, int val)
* \param info port_info container
* \param enable non-zero if updating the timestamps of incoming events
*/
-void snd_seq_port_info_set_port_timestamping(snd_seq_port_info_t *info, int enable)
+void snd_seq_port_info_set_timestamping(snd_seq_port_info_t *info, int enable)
{
assert(info);
if (enable)
@@ -1225,7 +1225,7 @@ void snd_seq_port_info_set_port_timestamping(snd_seq_port_info_t *info, int enab
* \param info port_info container
* \param enable non-zero if updating the timestamps in real-time mode
*/
-void snd_seq_port_info_set_port_timestamp_real(snd_seq_port_info_t *info, int enable)
+void snd_seq_port_info_set_timestamp_real(snd_seq_port_info_t *info, int enable)
{
assert(info);
if (enable)
@@ -1239,7 +1239,7 @@ void snd_seq_port_info_set_port_timestamp_real(snd_seq_port_info_t *info, int en
* \param info port_info container
* \param queue the queue id to get timestamps
*/
-void snd_seq_port_info_set_port_timestamp_queue(snd_seq_port_info_t *info, int queue)
+void snd_seq_port_info_set_timestamp_queue(snd_seq_port_info_t *info, int queue)
{
assert(info);
info->time_queue = queue;