OpenMAXBellagio
0.9.3
|
#include <stdio.h>
Go to the source code of this file.
Macros | |
#define | DEB_LEV_NO_OUTPUT 0 |
#define | DEB_LEV_ERR 1 |
#define | DEB_LEV_PARAMS 2 |
#define | DEB_LEV_SIMPLE_SEQ 4 |
#define | DEB_LEV_FULL_SEQ 8 |
#define | DEB_LEV_FUNCTION_NAME 16 |
#define | DEFAULT_MESSAGES 32 |
#define | DEB_ALL_MESS 255 |
#define | DEBUG_LEVEL (DEB_LEV_ERR) |
#define | DEBUG(n, fmt, args...) do { if (DEBUG_LEVEL & (n)){fprintf(stderr, "OMX-" fmt, ##args);} } while (0) |
#define DEB_ALL_MESS 255 |
All the messages - max value
Definition at line 69 of file omx_comp_debug_levels.h.
#define DEB_LEV_ERR 1 |
Messages explaining the reason of critical errors
Definition at line 40 of file omx_comp_debug_levels.h.
#define DEB_LEV_FULL_SEQ 8 |
Messages representing steps in the execution. All the steps are described, also with iterations. With this level of output the performances are seriously compromised
Definition at line 55 of file omx_comp_debug_levels.h.
#define DEB_LEV_FUNCTION_NAME 16 |
Messages that indicates the beginning and the end of a function. It can be used to trace the execution
Definition at line 60 of file omx_comp_debug_levels.h.
#define DEB_LEV_NO_OUTPUT 0 |
Define the level of debug prints on standard err. The different levels can be composed with binary OR. The debug levels defined here belong to OpenMAX components and IL core
Copyright (C) 2007-2011 STMicroelectronics Copyright (C) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
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.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
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 St, Fifth Floor, Boston, MA 02110-1301 USA Remove all debug output lines
Definition at line 36 of file omx_comp_debug_levels.h.
#define DEB_LEV_PARAMS 2 |
Messages showing values related to the test and the component/s used
Definition at line 44 of file omx_comp_debug_levels.h.
#define DEB_LEV_SIMPLE_SEQ 4 |
Messages representing steps in the execution. These are the simple messages, because they avoid iterations
Definition at line 49 of file omx_comp_debug_levels.h.
#define DEBUG | ( | n, | |
fmt, | |||
args... | |||
) | do { if (DEBUG_LEVEL & (n)){fprintf(stderr, "OMX-" fmt, ##args);} } while (0) |
Definition at line 78 of file omx_comp_debug_levels.h.
#define DEBUG_LEVEL (DEB_LEV_ERR) |
Definition at line 75 of file omx_comp_debug_levels.h.
#define DEFAULT_MESSAGES 32 |
Messages that are the default test application output. These message should be shown every time
Definition at line 65 of file omx_comp_debug_levels.h.