Skip to content

Commit d5d680c

Browse files
committed
Comments
1 parent 6a99056 commit d5d680c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/AudioTools/AudioCodecs/MP4Parser.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
namespace audio_tools {
1414

1515
/**
16-
* @brief MP4Parser is a class that parses MP4 files and extracts boxes (atoms).
17-
* It provides a callback mechanism to process each box as it is parsed. You can
18-
* define specific callbacks for individual box types or use a generic callback
19-
* for the undefined boxes: By default it just prints the box information to
20-
* Serial.
21-
* If a container box contains data, it will be processed recursively and if it
22-
* contains data itself, it might be reported in a second callback call.
16+
* @brief MP4Parser is a class that parses MP4 container files and extracts
17+
* boxes (atoms). It provides a callback mechanism to process each box as it is
18+
* parsed. You can define specific callbacks for individual box types or use a
19+
* generic callback for the undefined boxes: By default it just prints the box
20+
* information to Serial. If a container box contains data, it will be processed
21+
* recursively and if it contains data itself, it might be reported in a second
22+
* callback call.
2323
* @note This parser expect the mdat box to be the last box in the file. This
2424
* can be achieve with the following ffmpeg commands:
2525
* - ffmpeg -i ../sine.wav -c:a alac -movflags +faststart alac.m4a

0 commit comments

Comments
 (0)