mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-03 04:52:28 +00:00
removed GST_*_CAST. Disabling of type checking is done in glib.
Original commit message from CVS: removed GST_*_CAST. Disabling of type checking is done in glib.
This commit is contained in:
parent
d8b76118bd
commit
93cb77d0f0
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ process (jack_nframes_t nframes, void *arg)
|
||||||
bin->nframes = nframes;
|
bin->nframes = nframes;
|
||||||
|
|
||||||
JACK_DEBUG ("jackbin: iterating to process %ld frames of audio...", nframes);
|
JACK_DEBUG ("jackbin: iterating to process %ld frames of audio...", nframes);
|
||||||
if (!gst_bin_iterate (GST_BIN_CAST (bin))) {
|
if (!gst_bin_iterate (GST_BIN (bin))) {
|
||||||
g_warning ("bin failed to iterate");
|
g_warning ("bin failed to iterate");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue