mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
10 lines
331 B
Text
10 lines
331 B
Text
|
Development Notes and Random Wisdom
|
||
|
|
||
|
* in libs like dparams, include the respective dparam headers with
|
||
|
#include "dparams.h"
|
||
|
instead of
|
||
|
#include <gst/libs/control/dparams.h>
|
||
|
because the latter will, if the include flags are set that way, first look
|
||
|
for the installed headers instead of the newest one, which is in your source
|
||
|
dir.
|