mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +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 "outputstream.hh"
|
||||
#include <cassert>
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -87,7 +87,7 @@ GST_PAD_TEMPLATE_FACTORY (audio_sink_factory,
|
|||
GST_CAPS_NEW (
|
||||
"sink_audio",
|
||||
"audio/mpeg",
|
||||
"layer", GST_PROPS_RANGE (1, 3)
|
||||
"layer", GST_PROPS_INT_RANGE (1, 3)
|
||||
)
|
||||
)
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
|
||||
#include "audiostrm.hh"
|
||||
#include "outputstream.hh"
|
||||
#include <cassert>
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
|
||||
#include "videostrm.hh"
|
||||
#include "outputstream.hh"
|
||||
#include <cassert>
|
||||
|
||||
|
||||
/*******************************************************************
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
#include "stillsstream.hh"
|
||||
#include "outputstream.hh"
|
||||
#include <cassert>
|
||||
|
||||
void
|
||||
StillsStream::Init ()
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
#include <sys/stat.h>
|
||||
#include "systems.hh"
|
||||
#include "mplexconsts.hh"
|
||||
#include <cassert>
|
||||
|
||||
uint8_t dummy_buf[8000];
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue