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
gst-plugins-base
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
626
Issues
626
List
Boards
Labels
Service Desk
Milestones
Merge Requests
102
Merge Requests
102
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GStreamer
gst-plugins-base
Commits
0dd66648
Commit
0dd66648
authored
Dec 19, 2017
by
Tim-Philipp Müller
🐠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gl: fix up a few more #if HAVE_FOO
error: "HAVE_PNG" is not defined, evaluates to 0 [-Werror=undef]
parent
f216fff3
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
ext/gl/effects/gstgleffectssources.c
ext/gl/effects/gstgleffectssources.c
+1
-1
ext/gl/gstopengl.c
ext/gl/gstopengl.c
+2
-2
gst-libs/gst/gl/gstglcontext.c
gst-libs/gst/gl/gstglcontext.c
+1
-1
gst-libs/gst/gl/gstglwindow.c
gst-libs/gst/gl/gstglwindow.c
+1
-1
tests/check/pipelines/gl-launch-lines.c
tests/check/pipelines/gl-launch-lines.c
+3
-3
No files found.
ext/gl/effects/gstgleffectssources.c
View file @
0dd66648
...
...
@@ -18,7 +18,7 @@
* Boston, MA 02110-1301, USA.
*/
#if HAVE_CONFIG_H
#if
def
HAVE_CONFIG_H
#include "config.h"
#endif
...
...
ext/gl/gstopengl.c
View file @
0dd66648
...
...
@@ -85,7 +85,7 @@
#ifdef HAVE_VIDEO_AGGREGATOR_IN_BASE
#include "gstglmosaic.h"
#endif
#if HAVE_PNG
#if
def
HAVE_PNG
#include "gstgldifferencematte.h"
/* #include "gstglbumper.h" */
#endif
/* HAVE_PNG */
...
...
@@ -268,7 +268,7 @@ plugin_init (GstPlugin * plugin)
return
FALSE
;
}
#endif
#if HAVE_PNG
#if
def
HAVE_PNG
if
(
!
gst_element_register
(
plugin
,
"gldifferencematte"
,
GST_RANK_NONE
,
gst_gl_differencematte_get_type
()))
{
return
FALSE
;
...
...
gst-libs/gst/gl/gstglcontext.c
View file @
0dd66648
...
...
@@ -29,7 +29,7 @@
* specified and must only be activated in a single thread.
*/
#if HAVE_CONFIG_H
#if
def
HAVE_CONFIG_H
# include "config.h"
#endif
...
...
gst-libs/gst/gl/gstglwindow.c
View file @
0dd66648
...
...
@@ -28,7 +28,7 @@
* either be a user visible window (onscreen) or hidden (offscreen).
*/
#if HAVE_CONFIG_H
#if
def
HAVE_CONFIG_H
# include "config.h"
#endif
...
...
tests/check/pipelines/gl-launch-lines.c
View file @
0dd66648
...
...
@@ -187,7 +187,7 @@ GST_START_TEST (test_glfilterapp)
GST_END_TEST
#ifdef HAVE_PNG
#if HAVE_JPEG
#if
def
HAVE_JPEG
GST_START_TEST
(
test_gloverlay
)
{
const
gchar
*
s
;
...
...
@@ -337,7 +337,7 @@ gl_launch_lines_suite (void)
tcase_add_test
(
tc_chain
,
test_glshader
);
tcase_add_test
(
tc_chain
,
test_glfilterapp
);
#ifdef HAVE_PNG
#if HAVE_JPEG
#if
def
HAVE_JPEG
tcase_add_test
(
tc_chain
,
test_gloverlay
);
#endif
#endif
...
...
@@ -354,7 +354,7 @@ gl_launch_lines_suite (void)
#ifdef HAVE_PNG
tcase_add_test
(
tc_chain
,
test_gldifferencematte
);
/* tcase_add_test (tc_chain, test_glbumper);*/
#if HAVE_JPEG
#if
def
HAVE_JPEG
#endif
/* HAVE_JPEG */
#endif
/* HAVE_PNG */
#endif
/* GST_GL_HAVE_OPENGL */
...
...
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