-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d4a4ec
commit 84fa584
Showing
77 changed files
with
62 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* AirUPnP - UPnP control utils | ||
* UPnP control utils | ||
* | ||
* (c) Philippe, [email protected] | ||
* | ||
|
@@ -12,7 +12,6 @@ | |
#include "platform.h" | ||
#include "ixmlextra.h" | ||
#include "upnptools.h" | ||
#include "airupnp.h" | ||
#include "cross_log.h" | ||
#include "avt_util.h" | ||
|
||
|
@@ -167,7 +166,7 @@ bool AVTSeek(struct sMR *Device, unsigned Interval) | |
IXML_Document *ActionNode = NULL; | ||
char params[128]; | ||
|
||
LOG_INFO("[%p]: uPNP seek (%ds) (cookie %p)", Device, Interval, Device->seqN); | ||
LOG_INFO("[%p]: uPNP seek (%.2lf sec) (cookie %p)", Device, Interval / 1000.0, Device->seqN); | ||
|
||
if ((ActionNode = UpnpMakeAction("Seek", Service->Type, 0, NULL)) == NULL) return false; | ||
UpnpAddToAction(&ActionNode, "Seek", Service->Type, "InstanceID", "0"); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* UPnP Control util | ||
* UPnP control util | ||
* | ||
* (c) Philippe, [email protected] | ||
* | ||
|
@@ -10,6 +10,7 @@ | |
#pragma once | ||
|
||
#include "ixml.h" | ||
#include "airupnp.h" | ||
|
||
struct sMRConfig; | ||
struct sMR; | ||
|
Oops, something went wrong.