mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 07:28:53 +00:00
Fix warnings/errors due to missing assert declaration.
Original commit message from CVS: Fix warnings/errors due to missing assert declaration.
This commit is contained in:
parent
9cb5104b0a
commit
a82f777b09
6 changed files with 6 additions and 1 deletions
|
@ -27,6 +27,7 @@
|
||||||
|
|
||||||
#include "audiostrm.hh"
|
#include "audiostrm.hh"
|
||||||
#include "outputstream.hh"
|
#include "outputstream.hh"
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -87,7 +87,7 @@ GST_PAD_TEMPLATE_FACTORY (audio_sink_factory,
|
||||||
GST_CAPS_NEW (
|
GST_CAPS_NEW (
|
||||||
"sink_audio",
|
"sink_audio",
|
||||||
"audio/mpeg",
|
"audio/mpeg",
|
||||||
"layer", GST_PROPS_RANGE (1, 3)
|
"layer", GST_PROPS_INT_RANGE (1, 3)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
|
|
||||||
#include "audiostrm.hh"
|
#include "audiostrm.hh"
|
||||||
#include "outputstream.hh"
|
#include "outputstream.hh"
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
|
|
||||||
#include "videostrm.hh"
|
#include "videostrm.hh"
|
||||||
#include "outputstream.hh"
|
#include "outputstream.hh"
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************
|
/*******************************************************************
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
|
|
||||||
#include "stillsstream.hh"
|
#include "stillsstream.hh"
|
||||||
#include "outputstream.hh"
|
#include "outputstream.hh"
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
void
|
void
|
||||||
StillsStream::Init ()
|
StillsStream::Init ()
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include "systems.hh"
|
#include "systems.hh"
|
||||||
#include "mplexconsts.hh"
|
#include "mplexconsts.hh"
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
uint8_t dummy_buf[8000];
|
uint8_t dummy_buf[8000];
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue