root/trunk/libffado/src/fireworks/efc/efc_avc_cmd.h

Revision 629, 1.6 kB (checked in by ppalmers, 17 years ago)

- Base infrastructure for the Echo EFC commands
- Some first command implementations

Line 
1 /*
2  * Copyright (C) 2007 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 library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License version 2.1, as published by the Free Software Foundation;
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21  * MA 02110-1301 USA
22  */
23
24 #ifndef FIREWORKS_EFC_AVC_H
25 #define FIREWORKS_EFC_AVC_H
26
27 #include "libavc/general/avc_generic.h"
28 #include "libutil/cmd_serialize.h"
29 #include "libavc/general/avc_vendor_dependent_cmd.h"
30
31 #include <libavc1394/avc1394.h>
32
33 #include "efc_cmd.h"
34
35 namespace FireWorks {
36
37 class EfcOverAVCCmd: public AVC::VendorDependentCmd
38 {
39 public:
40     EfcOverAVCCmd(Ieee1394Service& ieee1394service);
41     virtual ~EfcOverAVCCmd();
42
43     virtual bool serialize( Util::IOSSerialize& se );
44     virtual bool deserialize( Util::IISDeserialize& de );
45
46     virtual const char* getCmdName() const
47     { return "EfcOverAVCCmd"; }
48
49     uint8_t     m_dummy_1;
50     uint8_t     m_dummy_2;
51    
52     EfcCmd*     m_cmd;
53 };
54
55 } // namespace FireWorks
56
57 #endif // FIREWORKS_EFC_AVC_H
Note: See TracBrowser for help on using the browser.