Changeset 677 for code/branches/FICN/src/audio/AudioStream.cc
- Timestamp:
- Dec 23, 2007, 7:19:07 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/audio/AudioStream.cc
r560 r677 105 105 { 106 106 COUT(3) 107 << "version " << vorbisInfo->version << "\n"108 << "channels " << vorbisInfo->channels << "\n"109 << "rate (hz) " << vorbisInfo->rate << "\n"110 << "bitrate upper " << vorbisInfo->bitrate_upper << "\n"111 << "bitrate nominal " << vorbisInfo->bitrate_nominal << "\n"112 << "bitrate lower " << vorbisInfo->bitrate_lower << "\n"113 << "bitrate window " << vorbisInfo->bitrate_window << "\n"114 << "\n"115 << "vendor " << vorbisComment->vendor << "\n";107 << "version " << vorbisInfo->version << std::endl 108 << "channels " << vorbisInfo->channels << std::endl 109 << "rate (hz) " << vorbisInfo->rate << std::endl 110 << "bitrate upper " << vorbisInfo->bitrate_upper << std::endl 111 << "bitrate nominal " << vorbisInfo->bitrate_nominal << std::endl 112 << "bitrate lower " << vorbisInfo->bitrate_lower << std::endl 113 << "bitrate window " << vorbisInfo->bitrate_window << std::endl 114 << std::endl 115 << "vendor " << vorbisComment->vendor << std::endl; 116 116 117 117 for(int i = 0; i < vorbisComment->comments; i++) 118 COUT(3) << " " << vorbisComment->user_comments[i] << "\n";118 COUT(3) << " " << vorbisComment->user_comments[i] << std::endl; 119 119 120 120 COUT(3) << std::endl;
Note: See TracChangeset
for help on using the changeset viewer.