summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert McQueen <rob@endlessm.com>2017-11-15 17:27:33 +0000
committerRobert McQueen <rob@endlessm.com>2017-11-20 11:07:59 +0000
commit621a387cbe88c8084796dd601e1efc95b6fd2c00 (patch)
treefc732232694084a4d76ddd263eab2618bff1ffc8
parent5f0f049416df05b17926e45b0d54a30dc943588b (diff)
downloadtotem-621a387cbe88c8084796dd601e1efc95b6fd2c00.tar.gz
thumbnailer: Blacklist video4linux2 plugin
On most V4L2 platforms supported by GStreamer, there are a finite number of M2M decoders and if the thumbnailer is using them, it prevents the user from playing back their real video. https://bugzilla.gnome.org/show_bug.cgi?id=790491
-rw-r--r--src/totem-video-thumbnailer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/totem-video-thumbnailer.c b/src/totem-video-thumbnailer.c
index 39d2d87ce..2caafa500 100644
--- a/src/totem-video-thumbnailer.c
+++ b/src/totem-video-thumbnailer.c
@@ -388,7 +388,8 @@ thumb_app_setup_play (ThumbApp *app)
GstRegistry *registry;
const char *blacklisted_plugins[] = {
"bmcdec",
- "vaapi"
+ "vaapi",
+ "video4linux2"
};
guint i;