root/branches/libffado-2.0/src/libstreaming/amdtp/AmdtpTransmitStreamProcessor.h

Revision 1524, 6.0 kB (checked in by ppalmers, 15 years ago)

- Fix handling of MIDI 2x and 3x mode
- Introduce support for driver parameters in the config file
- add command rate control for the saffire devices to reduce

the issues with mixer actions messing up audio.


Line 
1 /*
2  * Copyright (C) 2005-2008 by Pieter Palmers
3  *
4  * This file is part of FFADO
5  * FFADO = Free Firewire (pro-)audio drivers for linux
6  *
7  * FFADO is based upon FreeBoB.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 2 of the License, or
12  * (at your option) version 3 of the License.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  */
23
24 #ifndef __FFADO_AMDTPTRANSMITSTREAMPROCESSOR__
25 #define __FFADO_AMDTPTRANSMITSTREAMPROCESSOR__
26
27 /**
28  * This class implements IEC61883-6 / AM824 / AMDTP based streaming
29  */
30
31 #include "debugmodule/debugmodule.h"
32
33 #include "../generic/StreamProcessor.h"
34 #include "../util/cip.h"
35
36 #include <libiec61883/iec61883.h>
37 #include <pthread.h>
38
39 #define AMDTP_MAX_PACKET_SIZE 2048
40
41 #define IEC61883_STREAM_TYPE_MIDI   0x0D
42 #define IEC61883_STREAM_TYPE_SPDIF  0x00
43 #define IEC61883_STREAM_TYPE_MBLA   0x06
44
45 #define IEC61883_AM824_LABEL_MASK             0xFF000000
46 #define IEC61883_AM824_GET_LABEL(x)         (((x) & 0xFF000000) >> 24)
47 #define IEC61883_AM824_SET_LABEL(x,y)         ((x) | ((y)<<24))
48
49 #define IEC61883_AM824_LABEL_MIDI_NO_DATA     0x80
50 #define IEC61883_AM824_LABEL_MIDI_1X          0x81
51 #define IEC61883_AM824_LABEL_MIDI_2X          0x82
52 #define IEC61883_AM824_LABEL_MIDI_3X          0x83
53
54 #define IEC61883_AM824_HAS_LABEL(x, lbl)         (((x) & 0xFF000000) == (((quadlet_t)(lbl))<<24))
55
56 namespace Streaming {
57
58 class Port;
59 class AmdtpAudioPort;
60 class AmdtpMidiPort;
61
62 /*!
63 \brief The Base Class for an AMDTP transmit stream processor
64
65  This class implements a TransmitStreamProcessor that multiplexes Ports
66  into AMDTP streams.
67
68 */
69 class AmdtpTransmitStreamProcessor
70     : public StreamProcessor
71 {
72
73 public:
74     /**
75      * Create a AMDTP transmit StreamProcessor
76      * @param port 1394 port
77      * @param framerate frame rate
78      * @param dimension number of substreams in the ISO stream
79      *                  (midi-muxed is only one stream)
80      */
81     AmdtpTransmitStreamProcessor(FFADODevice &parent, int dimension);
82     virtual ~AmdtpTransmitStreamProcessor() {};
83
84     enum eChildReturnValue generatePacketHeader(unsigned char *data, unsigned int *length,
85                                                 unsigned char *tag, unsigned char *sy,
86                                                 uint32_t pkt_ctr);
87     enum eChildReturnValue generatePacketData(unsigned char *data, unsigned int *length);
88     enum eChildReturnValue generateEmptyPacketHeader(unsigned char *data, unsigned int *length,
89                                                      unsigned char *tag, unsigned char *sy,
90                                                      uint32_t pkt_ctr);
91     enum eChildReturnValue generateEmptyPacketData(unsigned char *data, unsigned int *length);
92     enum eChildReturnValue generateSilentPacketHeader(unsigned char *data, unsigned int *length,
93                                                       unsigned char *tag, unsigned char *sy,
94                                                       uint32_t pkt_ctr);
95     enum eChildReturnValue generateSilentPacketData(unsigned char *data, unsigned int *length);
96     virtual bool prepareChild();
97
98 #if AMDTP_ALLOW_PAYLOAD_IN_NODATA_XMIT
99 public:
100     void sendPayloadForNoDataPackets(bool b) {m_send_nodata_payload = b;};
101 #endif
102
103 public:
104     virtual unsigned int getEventSize()
105                     {return 4;};
106     virtual unsigned int getMaxPacketSize()
107                     {return 4 * (2 + getSytInterval() * m_dimension);};
108     virtual unsigned int getEventsPerFrame()
109                     { return m_dimension; };
110     virtual unsigned int getNominalFramesPerPacket()
111                     {return getSytInterval();};
112
113 protected:
114     bool processWriteBlock(char *data, unsigned int nevents, unsigned int offset);
115     bool transmitSilenceBlock(char *data, unsigned int nevents, unsigned int offset);
116
117 private:
118     unsigned int fillNoDataPacketHeader(struct iec61883_packet *packet, unsigned int* length);
119     unsigned int fillDataPacketHeader(struct iec61883_packet *packet, unsigned int* length, uint32_t ts);
120
121     int transmitBlock(char *data, unsigned int nevents,
122                         unsigned int offset);
123
124     void encodeAudioPortsSilence(quadlet_t *data, unsigned int offset, unsigned int nevents);
125     void encodeAudioPortsFloat(quadlet_t *data, unsigned int offset, unsigned int nevents);
126     void encodeAudioPortsInt24(quadlet_t *data, unsigned int offset, unsigned int nevents);
127     void encodeMidiPortsSilence(quadlet_t *data, unsigned int offset, unsigned int nevents);
128     void encodeMidiPorts(quadlet_t *data, unsigned int offset, unsigned int nevents);
129
130     unsigned int getFDF();
131     unsigned int getSytInterval();
132
133     struct iec61883_cip m_cip_status;
134     int m_dimension;
135     unsigned int m_syt_interval;
136     int m_fdf;
137     unsigned int m_dbc;
138
139 #if AMDTP_ALLOW_PAYLOAD_IN_NODATA_XMIT
140 private:
141     bool m_send_nodata_payload;
142 #endif
143
144 private: // local port caching for performance
145     struct _MBLA_port_cache {
146         AmdtpAudioPort*     port;
147         void*               buffer;
148         bool                enabled;
149 #ifdef DEBUG
150         unsigned int        buffer_size;
151 #endif
152     };
153     std::vector<struct _MBLA_port_cache> m_audio_ports;
154     int m_nb_audio_ports;
155
156     struct _MIDI_port_cache {
157         AmdtpMidiPort*      port;
158         void*               buffer;
159         bool                enabled;
160         unsigned int        position;
161         unsigned int        location;
162 #ifdef DEBUG
163         unsigned int        buffer_size;
164 #endif
165     };
166     std::vector<struct _MIDI_port_cache> m_midi_ports;
167     int m_nb_midi_ports;
168
169     bool initPortCache();
170     void updatePortCache();
171 };
172
173 } // end of namespace Streaming
174
175 #endif /* __FFADO_AMDTPTRANSMITSTREAMPROCESSOR__ */
176
Note: See TracBrowser for help on using the browser.