2015-09-19 02:21:55 +00:00
|
|
|
#ifndef SOUND_FIREWIRE_AMDTP_AM824_H_INCLUDED
|
|
|
|
#define SOUND_FIREWIRE_AMDTP_AM824_H_INCLUDED
|
|
|
|
|
2015-09-19 02:21:57 +00:00
|
|
|
#include <sound/pcm.h>
|
|
|
|
|
2015-09-19 02:21:55 +00:00
|
|
|
#include "amdtp-stream.h"
|
|
|
|
|
2015-09-19 02:21:56 +00:00
|
|
|
int amdtp_am824_set_parameters(struct amdtp_stream *s, unsigned int rate,
|
|
|
|
unsigned int pcm_channels,
|
|
|
|
unsigned int midi_ports,
|
|
|
|
bool double_pcm_frames);
|
|
|
|
|
2015-09-19 02:21:58 +00:00
|
|
|
void amdtp_am824_set_pcm_position(struct amdtp_stream *s, unsigned int index,
|
|
|
|
unsigned int position);
|
|
|
|
|
|
|
|
void amdtp_am824_set_midi_position(struct amdtp_stream *s,
|
|
|
|
unsigned int position);
|
|
|
|
|
2015-09-19 02:21:57 +00:00
|
|
|
int amdtp_am824_add_pcm_hw_constraints(struct amdtp_stream *s,
|
|
|
|
struct snd_pcm_runtime *runtime);
|
|
|
|
|
2015-09-19 02:21:55 +00:00
|
|
|
int amdtp_am824_init(struct amdtp_stream *s, struct fw_unit *unit,
|
|
|
|
enum amdtp_stream_direction dir, enum cip_flags flags);
|
|
|
|
#endif
|