File tree Expand file tree Collapse file tree 2 files changed +5
-581
lines changed Expand file tree Collapse file tree 2 files changed +5
-581
lines changed Original file line number Diff line number Diff line change @@ -320,6 +320,7 @@ class MetaDataID3V2 : public MetaDataID3Base {
320
320
use_bytes_of_next_write = 0 ;
321
321
actual_tag = nullptr ;
322
322
tag_active = false ;
323
+ tag_processed = false ;
323
324
}
324
325
325
326
@@ -329,6 +330,7 @@ class MetaDataID3V2 : public MetaDataID3Base {
329
330
use_bytes_of_next_write = 0 ;
330
331
actual_tag = nullptr ;
331
332
tag_active = false ;
333
+ tag_processed = false ;
332
334
}
333
335
334
336
// / provide the (partial) data which might contain the meta data
@@ -526,17 +528,20 @@ class MetaDataID3 : public AbstractMetaData {
526
528
}
527
529
528
530
void begin () {
531
+ LOGI (LOG_METHOD);
529
532
id3v1.begin ();
530
533
id3v2.begin ();
531
534
}
532
535
533
536
void end () {
537
+ LOGI (LOG_METHOD);
534
538
id3v1.end ();
535
539
id3v2.end ();
536
540
}
537
541
538
542
// / Provide tha audio data to the API to parse for Meta Data
539
543
virtual size_t write (const uint8_t *data, size_t length){
544
+ LOGD (LOG_METHOD);
540
545
id3v1.write (data, length);
541
546
id3v2.write (data, length);
542
547
return length;
@@ -546,7 +551,6 @@ class MetaDataID3 : public AbstractMetaData {
546
551
protected:
547
552
MetaDataID3V1 id3v1;
548
553
MetaDataID3V2 id3v2;
549
-
550
554
};
551
555
552
556
} // namespace
You can’t perform that action at this time.
0 commit comments