Commit 1817a07a authored by Roman Donchenko's avatar Roman Donchenko

Fixed a -Wnull-conversion Clang warning in cap_gstreamer.cpp.

parent a1e239d2
...@@ -134,7 +134,7 @@ protected: ...@@ -134,7 +134,7 @@ protected:
void startPipeline(); void startPipeline();
void stopPipeline(); void stopPipeline();
void restartPipeline(); void restartPipeline();
void setFilter(const char* prop, int type, int v1, int v2 = NULL); void setFilter(const char* prop, int type, int v1, int v2 = 0);
void removeFilter(const char *filter); void removeFilter(const char *filter);
static void newPad(GstElement *myelement, static void newPad(GstElement *myelement,
GstPad *pad, GstPad *pad,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment