Changeset 23
- Timestamp:
- 11/25/04 13:12:29 (18 years ago)
- Files:
-
- trunk/freebob/src/avaudioinfoblock.cpp (modified) (1 diff)
- trunk/freebob/src/avaudiosyncinfoblock.cpp (modified) (1 diff)
- trunk/freebob/src/avmidiinfoblock.cpp (modified) (2 diffs)
- trunk/freebob/src/avoutputplugstatusinfoblock.cpp (added)
- trunk/freebob/src/avoutputplugstatusinfoblock.h (added)
- trunk/freebob/src/avsourcepluginfoblock.cpp (added)
- trunk/freebob/src/avsourcepluginfoblock.h (added)
- trunk/freebob/src/ieee1394service.cpp (modified) (2 diffs)
- trunk/freebob/src/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freebob/src/avaudioinfoblock.cpp
r22 r23 36 36 bValid=false; 37 37 } 38 debugPrint(DEBUG_LEVEL_INFO,"AvAudioInfoBlock: Creating... length=0x%04X\n",getLength()); 38 39 39 40 // PP: I assume that there is only an audio block, no optional blocks. 40 41 cNameInfoBlock=new AvNameInfoBlock(parent, address+7); 42 debugPrint(DEBUG_LEVEL_INFO,"AvAudioInfoBlock: Created\n"); 41 43 42 44 } trunk/freebob/src/avaudiosyncinfoblock.cpp
r22 r23 35 35 bValid=false; 36 36 } 37 debugPrint(DEBUG_LEVEL_INFO,"AvAudioSyncInfoBlock: Creating... length=0x%04X\n",getLength()); 38 debugPrint(DEBUG_LEVEL_INFO,"AvAudioSyncInfoBlock: Created\n"); 39 37 40 } 38 41 trunk/freebob/src/avmidiinfoblock.cpp
r22 r23 41 41 AvNameInfoBlock *tmpNameBlock; 42 42 43 debugPrint(DEBUG_LEVEL_INFO,"AvMidiInfoBlock: Creating... length=0x%04X\n",getLength()); 44 43 45 if (nb_streams>0) { 44 46 position=address+7; … … 60 62 61 63 } 64 debugPrint(DEBUG_LEVEL_INFO,"AvMidiInfoBlock: Created\n"); 62 65 63 66 // no optional info blocks please... trunk/freebob/src/ieee1394service.cpp
r22 r23 35 35 #include "avmidiinfoblock.h" 36 36 #include "avaudiosyncinfoblock.h" 37 #include "avsourcepluginfoblock.h" 38 #include "avoutputplugstatusinfoblock.h" 37 39 38 40 Ieee1394Service* Ieee1394Service::m_pInstance = 0; … … 294 296 delete testblock5; 295 297 delete testblock6; 296 298 299 // now try to parse a full source plug entry 300 debugPrint (DEBUG_LEVEL_INFO, " Trying to create an AvSourcePlugInfoBlock...\n"); 301 AvSourcePlugInfoBlock *testblock7=new AvSourcePlugInfoBlock(testdesc_mid2,0x13); 302 303 debugPrint (DEBUG_LEVEL_INFO, " Deleting AvSourcePlugInfoBlock...\n"); 304 305 delete testblock7; 306 307 // now try to parse the full music output plug status infoblock 308 debugPrint (DEBUG_LEVEL_INFO, " Trying to create an AvOutputPlugStatusInfoBlock...\n"); 309 AvOutputPlugStatusInfoBlock *testblock8=new AvOutputPlugStatusInfoBlock(testdesc_mid2,0x0C); 310 311 debugPrint (DEBUG_LEVEL_INFO, " Deleting AvOutputPlugStatusInfoBlock...\n"); 312 313 delete testblock8; 314 297 315 debugPrint (DEBUG_LEVEL_INFO, " Deleting AvMusicStatusDescriptor...\n"); 298 316 delete testdesc_mid2; trunk/freebob/src/Makefile.am
r22 r23 53 53 avaudiosyncinfoblock.h \ 54 54 avaudiosyncinfoblock.cpp \ 55 avsourcepluginfoblock.h \ 56 avsourcepluginfoblock.cpp \ 57 avoutputplugstatusinfoblock.h \ 58 avoutputplugstatusinfoblock.cpp \ 55 59 debugmodule.cpp \ 56 60 main.cpp