Skip to content

Commit 0d62426

Browse files
committed
onAlac remove caps
1 parent 0aa7a19 commit 0d62426

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AudioTools/AudioCodecs/M4AAudioDemuxer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ class M4AAudioDemuxer {
382382
*/
383383
static void alacCallback(MP4Parser::Box& box, void* ref) {
384384
M4AAudioDemuxer& self = *static_cast<M4AAudioDemuxer*>(ref);
385-
self.OnAlac(box);
385+
self.onAlac(box);
386386
}
387387

388388
/**
@@ -550,7 +550,7 @@ class M4AAudioDemuxer {
550550
* @brief Handles the alac box.
551551
* @param box MP4 box.
552552
*/
553-
void OnAlac(const MP4Parser::Box& box) {
553+
void onAlac(const MP4Parser::Box& box) {
554554
LOGI("onAlac: %s, size: %zu bytes", box.type, box.data_size);
555555
codec = Codec::ALAC;
556556
sampleExtractor.setCodec(codec);

0 commit comments

Comments
 (0)