decoder/ffmpeg: add two more missing commas

This commit is contained in:
Max Kellermann 2020-02-04 16:30:05 +01:00
parent 0914644d2b
commit 50003f6ad2
2 changed files with 3 additions and 2 deletions

1
NEWS
View File

@ -1,6 +1,7 @@
ver 0.21.20 (not yet released)
* decoder
- audiofile, ffmpeg, sndfile: handle MIME type "audio/wav"
- ffmpeg: fix playback of AIFF and TTA
- vorbis, opus: fix seeking in small files
ver 0.21.19 (2020/01/17)

View File

@ -781,7 +781,7 @@ static const char *const ffmpeg_mime_types[] = {
"audio/x-aac",
"audio/x-ac3",
"audio/x-adx",
"audio/x-aiff"
"audio/x-aiff",
"audio/x-alaw",
"audio/x-au",
"audio/x-dca",
@ -801,7 +801,7 @@ static const char *const ffmpeg_mime_types[] = {
"audio/x-pn-realaudio",
"audio/x-pn-multirate-realaudio",
"audio/x-speex",
"audio/x-tta"
"audio/x-tta",
"audio/x-voc",
"audio/x-wav",
"audio/x-wma",