summaryrefslogtreecommitdiffstats
path: root/mpeglib/lib/util
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2026-01-06 00:19:46 +0100
committerSlávek Banko <slavek.banko@axis.cz>2026-01-06 00:28:14 +0100
commit572b6227417225ad595cb9768025001d9faa7314 (patch)
treed42fb5f570f691dd0ed19d0b1cb88288b085e2b4 /mpeglib/lib/util
parent53cc18a718986fece2790ef71e87a1a16bbe3c23 (diff)
downloadtdemultimedia-master.tar.gz
tdemultimedia-master.zip
Replace TRUE/FALSE with boolean values true/false.HEADmaster
Finishing the remaining renames from #97. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'mpeglib/lib/util')
-rw-r--r--mpeglib/lib/util/audio/audioIO_BeOS.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpeglib/lib/util/audio/audioIO_BeOS.cpp b/mpeglib/lib/util/audio/audioIO_BeOS.cpp
index 3c221f0e..80a1c638 100644
--- a/mpeglib/lib/util/audio/audioIO_BeOS.cpp
+++ b/mpeglib/lib/util/audio/audioIO_BeOS.cpp
@@ -175,7 +175,7 @@ void audioInit(int sampleSize,int frequency, int stereo)
// Enter the stream
- the_sub->EnterStream(NULL, TRUE, NULL, stream_func, NULL, TRUE);
+ the_sub->EnterStream(NULL, true, NULL, stream_func, NULL, true);
}
@@ -189,7 +189,7 @@ void audioSetVolume(int volume)
void audioClose()
{
- the_sub->ExitStream(TRUE);
+ the_sub->ExitStream(true);
the_sub->Unsubscribe();
delete_sem(ok_to_read);