From 77c1d17940e39ff9a32b4d6bd8ffbb61df3dbfbb Mon Sep 17 00:00:00 2001 From: Sergey Sharybin <sergey.vfx@gmail.com> Date: Fri, 21 Mar 2014 13:52:37 +0600 Subject: [PATCH] Fix T39186: Matroska audio support (mka, mkv without video stream) .mka files were considered image files when adding to sequencer using drag-n-drop. --- source/blender/imbuf/intern/util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c index c1cc3f0a1db..9259c4f743d 100644 --- a/source/blender/imbuf/intern/util.c +++ b/source/blender/imbuf/intern/util.c @@ -179,6 +179,7 @@ const char *imb_ext_audio[] = { ".aif", ".aiff", ".m4a", + ".mka", NULL }; -- GitLab