File tree Expand file tree Collapse file tree 2 files changed +0
-5
lines changed
src/AudioTools/AudioCodecs Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ class M4AAudioDemuxer {
3030 const char * mime = nullptr ; // /< MIME type string.
3131 const uint8_t * data; // /< Pointer to frame data.
3232 size_t size; // /< Size of frame data in bytes.
33- uint64_t timestamp; // /< Timestamp of the frame (if available).
3433 };
3534
3635 /* *
@@ -254,7 +253,6 @@ class M4AAudioDemuxer {
254253 frame.codec = codec;
255254 frame.data = buffer.data ();
256255 frame.size = frameSize;
257- frame.timestamp = 0 ; // TODO: timestamp
258256 switch (codec) {
259257 case Codec::AAC: {
260258 uint8_t out[frameSize + 7 ];
Original file line number Diff line number Diff line change 66#include < string>
77
88#include " AudioTools/CoreAudio/Buffers.h"
9- #ifdef ARDUINO
10- #include " Serial.h"
11- #endif
129
1310namespace audio_tools {
1411
You can’t perform that action at this time.
0 commit comments