# HG changeset patch # User reimar # Date 1312486226 0 # Node ID 0a39f8762b975266f7846b518257b1e21c373410 # Parent 1b795ff832d65a7f3678e101748cb310f76179d2 vo_null: do not accept hwaccel formats since they need special vo support and thus will actually not work with it. diff -r 1b795ff832d6 -r 0a39f8762b97 libvo/vo_null.c --- a/libvo/vo_null.c Thu Aug 04 09:51:10 2011 +0000 +++ b/libvo/vo_null.c Thu Aug 04 19:30:26 2011 +0000 @@ -67,6 +67,8 @@ static int query_format(uint32_t format) { + if (IMGFMT_IS_HWACCEL(format)) + return 0; return VFCAP_CSP_SUPPORTED; }