2010-01-25 16:15:01 +00:00
|
|
|
/*
|
2010-03-16 09:17:41 +00:00
|
|
|
* gstvaapidebug.h - VA-API debugging utilities
|
2010-01-25 16:15:01 +00:00
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* Copyright (C) 2010-2011 Splitted-Desktop Systems
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@splitted-desktop.com>
|
2010-01-25 16:15:01 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1
|
|
|
|
* of the License, or (at your option) any later version.
|
2010-01-25 16:15:01 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-01-25 16:15:01 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2010-05-03 07:07:27 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2010-01-25 16:15:01 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
2010-01-25 16:15:01 +00:00
|
|
|
*/
|
|
|
|
|
2010-03-16 09:18:57 +00:00
|
|
|
#ifndef GST_VAAPI_DEBUG_H
|
|
|
|
#define GST_VAAPI_DEBUG_H
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2010-03-25 17:21:13 +00:00
|
|
|
#include <gst/gstinfo.h>
|
2010-01-25 16:15:01 +00:00
|
|
|
|
|
|
|
#if DEBUG
|
2010-03-10 13:13:51 +00:00
|
|
|
GST_DEBUG_CATEGORY_EXTERN(gst_debug_vaapi);
|
|
|
|
#define GST_CAT_DEFAULT gst_debug_vaapi
|
2010-03-25 17:21:13 +00:00
|
|
|
#endif
|
2010-03-10 13:13:51 +00:00
|
|
|
|
2016-10-13 03:53:17 +00:00
|
|
|
#if DEBUG_VAAPI_DISPLAY
|
|
|
|
GST_DEBUG_CATEGORY_EXTERN(gst_debug_vaapi_display);
|
|
|
|
#define GST_CAT_DEFAULT gst_debug_vaapi_display
|
|
|
|
#endif
|
|
|
|
|
2010-03-16 09:18:57 +00:00
|
|
|
#endif /* GST_VAAPI_DEBUG_H */
|