mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
ext: Fix some compilation errors caused by circular header includes
This commit is contained in:
parent
3f82e919dd
commit
d9b25afe71
3 changed files with 4 additions and 4 deletions
|
@ -24,7 +24,7 @@
|
||||||
#define __GST_ALSASINK_H__
|
#define __GST_ALSASINK_H__
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/audio/gstaudiosink.h>
|
#include <gst/audio/audio.h>
|
||||||
#include <alsa/asoundlib.h>
|
#include <alsa/asoundlib.h>
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
#ifndef __GST_ALSASRC_H__
|
#ifndef __GST_ALSASRC_H__
|
||||||
#define __GST_ALSASRC_H__
|
#define __GST_ALSASRC_H__
|
||||||
|
|
||||||
#include <gst/audio/gstaudiosrc.h>
|
#include <gst/audio/audio.h>
|
||||||
#include "gstalsa.h"
|
#include "gstalsa.h"
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
|
@ -58,8 +58,6 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "gsttheoraenc.h"
|
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h> /* free */
|
#include <stdlib.h> /* free */
|
||||||
|
|
||||||
|
@ -67,6 +65,8 @@
|
||||||
#include <gst/video/video.h>
|
#include <gst/video/video.h>
|
||||||
#include <gst/video/gstvideometa.h>
|
#include <gst/video/gstvideometa.h>
|
||||||
|
|
||||||
|
#include "gsttheoraenc.h"
|
||||||
|
|
||||||
#define GST_CAT_DEFAULT theoraenc_debug
|
#define GST_CAT_DEFAULT theoraenc_debug
|
||||||
GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
|
GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue