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 {
30
30
const char * mime = nullptr ; // /< MIME type string.
31
31
const uint8_t * data; // /< Pointer to frame data.
32
32
size_t size; // /< Size of frame data in bytes.
33
- uint64_t timestamp; // /< Timestamp of the frame (if available).
34
33
};
35
34
36
35
/* *
@@ -254,7 +253,6 @@ class M4AAudioDemuxer {
254
253
frame.codec = codec;
255
254
frame.data = buffer.data ();
256
255
frame.size = frameSize;
257
- frame.timestamp = 0 ; // TODO: timestamp
258
256
switch (codec) {
259
257
case Codec::AAC: {
260
258
uint8_t out[frameSize + 7 ];
Original file line number Diff line number Diff line change 6
6
#include < string>
7
7
8
8
#include " AudioTools/CoreAudio/Buffers.h"
9
- #ifdef ARDUINO
10
- #include " Serial.h"
11
- #endif
12
9
13
10
namespace audio_tools {
14
11
You can’t perform that action at this time.
0 commit comments