Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
13
Merge Requests
13
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Steve Lhomme
VLC
Commits
d666b6e5
Commit
d666b6e5
authored
Oct 06, 2015
by
François Cartegnie
🤞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: adaptative: add debug helper
parent
9240ed51
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
0 deletions
+33
-0
modules/demux/Makefile.am
modules/demux/Makefile.am
+1
-0
modules/demux/adaptative/tools/Debug.hpp
modules/demux/adaptative/tools/Debug.hpp
+32
-0
No files found.
modules/demux/Makefile.am
View file @
d666b6e5
...
...
@@ -322,6 +322,7 @@ libadaptative_plugin_la_SOURCES = \
demux/adaptative/Streams.hpp
\
demux/adaptative/StreamsType.hpp
\
demux/adaptative/Time.hpp
\
demux/adaptative/tools/Debug.hpp
\
demux/adaptative/tools/Helper.cpp
\
demux/adaptative/tools/Helper.h
\
demux/adaptative/tools/Properties.hpp
\
...
...
modules/demux/adaptative/tools/Debug.hpp
0 → 100644
View file @
d666b6e5
/*
* Debug.hpp
*****************************************************************************
* Copyright © 2015 VideoLAN and VLC Authors
*
* This program 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 program 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 program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef DEBUG_HPP
#define DEBUG_HPP
//#define ADAPTATIVE_ADVANCED_DEBUG 0
#ifdef ADAPTATIVE_ADVANCED_DEBUG
#define AdvDebug(code) code
#else
#define AdvDebug(code)
#endif
#endif // DEBUG_HPP
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment