mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-02-13 19:05:37 +00:00
avformat/utils: add support for reading ID3 tags at start of wav
Fixes #4140.
This commit is contained in:
parent
f5aad350d3
commit
102c11745e
1 changed files with 1 additions and 1 deletions
|
|
@ -646,7 +646,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
|||
|
||||
if (id3v2_extra_meta) {
|
||||
if (!strcmp(s->iformat->name, "mp3") || !strcmp(s->iformat->name, "aac") ||
|
||||
!strcmp(s->iformat->name, "tta")) {
|
||||
!strcmp(s->iformat->name, "tta") || !strcmp(s->iformat->name, "wav")) {
|
||||
if ((ret = ff_id3v2_parse_apic(s, &id3v2_extra_meta)) < 0)
|
||||
goto fail;
|
||||
if ((ret = ff_id3v2_parse_chapters(s, &id3v2_extra_meta)) < 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue