From aae67cf348ddf36bf7274afd7d809b7018f15d61 Mon Sep 17 00:00:00 2001 From: Aaron Plattner Date: Fri, 19 Dec 2014 11:10:58 -0800 Subject: List profiles that are not supported as well For profiles that are defined by libvdpau but not supported by the backend, print a line indicating that they're not supported. Signed-off-by: Aaron Plattner --- vdpauinfo.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vdpauinfo.cpp b/vdpauinfo.cpp index 147d61a..46aa9eb 100644 --- a/vdpauinfo.cpp +++ b/vdpauinfo.cpp @@ -377,6 +377,8 @@ void queryDecoderCaps(VDPDeviceImpl *device) { printf("%-30s %2i %5i %5i %5i\n", decoder_profiles[x].name, max_level, max_macroblocks, max_width, max_height); + } else { + printf("%-30s --- not supported ---\n", decoder_profiles[x].name); } } } -- cgit v1.2.3