mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
sys/dvb/: Fix some warnings.
Original commit message from CVS: * sys/dvb/camapplication.c: * sys/dvb/camresourcemanager.c: Fix some warnings.
This commit is contained in:
parent
dec4ec1f5c
commit
2ae4242d8a
3 changed files with 10 additions and 4 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,7 +1,13 @@
|
||||||
|
2007-10-17 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* sys/dvb/camapplication.c:
|
||||||
|
* sys/dvb/camresourcemanager.c:
|
||||||
|
Fix some warnings.
|
||||||
|
|
||||||
2007-10-16 Thijs Vermeir <thijsvermeir@gmail.com>
|
2007-10-16 Thijs Vermeir <thijsvermeir@gmail.com>
|
||||||
|
|
||||||
* gst/librfb/rfbdecoder.c:
|
* gst/librfb/rfbdecoder.c:
|
||||||
Add the set encodings client message
|
Add the set encodings client message
|
||||||
|
|
||||||
2007-10-16 Thijs Vermeir <thijsvermeir@gmail.com>
|
2007-10-16 Thijs Vermeir <thijsvermeir@gmail.com>
|
||||||
|
|
||||||
|
@ -11,7 +17,7 @@
|
||||||
* gst/librfb/rfbbytestream.h:
|
* gst/librfb/rfbbytestream.h:
|
||||||
* gst/librfb/rfbdecoder.c:
|
* gst/librfb/rfbdecoder.c:
|
||||||
* gst/librfb/rfbdecoder.h:
|
* gst/librfb/rfbdecoder.h:
|
||||||
remove the rfbbytestream dead code
|
Remove the rfbbytestream dead code
|
||||||
|
|
||||||
2007-10-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
2007-10-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@ static CamReturn session_data_cb (CamSL * sl,
|
||||||
static guint
|
static guint
|
||||||
resource_id_hash (gconstpointer key)
|
resource_id_hash (gconstpointer key)
|
||||||
{
|
{
|
||||||
guint resource_id = (guint) key;
|
guint resource_id = GPOINTER_TO_UINT (key);
|
||||||
|
|
||||||
if (!CAM_AL_RESOURCE_ID_IS_PUBLIC (resource_id)) {
|
if (!CAM_AL_RESOURCE_ID_IS_PUBLIC (resource_id)) {
|
||||||
/* private identifier, leave it as is */
|
/* private identifier, leave it as is */
|
||||||
|
|
|
@ -127,7 +127,7 @@ send_profile_reply (CamResourceManager * mgr, CamSLSession * session)
|
||||||
apdu_body = buffer + offset;
|
apdu_body = buffer + offset;
|
||||||
|
|
||||||
for (walk = resource_ids; walk != NULL; walk = walk->next) {
|
for (walk = resource_ids; walk != NULL; walk = walk->next) {
|
||||||
GST_WRITE_UINT32_BE (apdu_body, walk->data);
|
GST_WRITE_UINT32_BE (apdu_body, GPOINTER_TO_UINT (walk->data));
|
||||||
|
|
||||||
apdu_body += 4;
|
apdu_body += 4;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue