From b5d7c95e361d26b8316e8ab70ea66126fbd861b9 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 1 Dec 2013 15:18:06 +0100 Subject: vo_null: don't reject hwaccel formats This is not strictly needed anymore. (On the other hand, it's not really possible to do hw decoding with vo_null, because the VO is still responsible for opening the hw decoder API, but that's another story.) --- video/out/vo_null.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/video/out/vo_null.c b/video/out/vo_null.c index c7e81a8c16..bb20945728 100644 --- a/video/out/vo_null.c +++ b/video/out/vo_null.c @@ -40,8 +40,6 @@ static void flip_page(struct vo *vo) static int query_format(struct vo *vo, uint32_t format) { - if (IMGFMT_IS_HWACCEL(format)) - return 0; return VFCAP_CSP_SUPPORTED; } -- cgit v1.2.3