mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 13:25:56 +00:00
libs: codecparser: add missing unstable api warning
mpeg4 and vp8 parsers didn't show that compilation warning as the others parsers.
This commit is contained in:
parent
158a2b3fd1
commit
efcabce98e
2 changed files with 10 additions and 0 deletions
|
@ -24,6 +24,11 @@
|
|||
#include <gst/gst.h>
|
||||
#include <gst/codecparsers/codecparsers-prelude.h>
|
||||
|
||||
#ifndef GST_USE_UNSTABLE_API
|
||||
#warning "The MPEG4 parsing library is unstable API and may change in future."
|
||||
#warning "You can define GST_USE_UNSTABLE_API to avoid this warning."
|
||||
#endif
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
typedef struct _GstMpeg4VisualObjectSequence GstMpeg4VisualObjectSequence;
|
||||
|
|
|
@ -27,6 +27,11 @@
|
|||
#include <gst/gst.h>
|
||||
#include <gst/codecparsers/codecparsers-prelude.h>
|
||||
|
||||
#ifndef GST_USE_UNSTABLE_API
|
||||
#warning "The VP8 parsing library is unstable API and may change in future."
|
||||
#warning "You can define GST_USE_UNSTABLE_API to avoid this warning."
|
||||
#endif
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
typedef struct _GstVp8FrameHdr GstVp8FrameHdr;
|
||||
|
|
Loading…
Reference in a new issue