Skip to content

Commit

Permalink
decoder/ffmpeg: add two more missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKellermann committed Feb 4, 2020
1 parent 0914644 commit 50003f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions src/decoder/plugins/FfmpegDecoderPlugin.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 50003f6

Please sign in to comment.