Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
TPF
jacktrip
Commits
c5ccd102
Commit
c5ccd102
authored
Apr 29, 2010
by
jcacerec
Browse files
fix getter methods
parent
c00f7e31
Changes
1
Hide whitespace changes
Inline
Side-by-side
jacktrip/src/JackTrip.h
View file @
c5ccd102
...
...
@@ -295,12 +295,12 @@ public:
virtual
void
writeAudioBuffer
(
const
int8_t
*
ptrToSlot
)
{
mReceiveRingBuffer
->
insertSlotNonBlocking
(
ptrToSlot
);
}
uint32_t
getBufferSizeInSamples
()
const
{
return
mAudioInterface
->
getBufferSizeInSamples
();
}
{
return
mAudioBufferSize
;
/*return
mAudioInterface->getBufferSizeInSamples();
*/
}
AudioInterface
::
samplingRateT
getSampleRateType
()
const
{
return
mAudioInterface
->
getSampleRateType
();
}
int
getSampleRate
()
const
{
return
mAudioInterface
->
getSampleRate
();
}
{
return
mSampleRate
;
/*return
mAudioInterface->getSampleRate();
*/
}
uint8_t
getAudioBitResolution
()
const
{
return
mAudioBitResolution
;
/*return mAudioInterface->getAudioBitResolution();*/
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment