Skip to content

Commit 4f391a9

Browse files
committed
1.8.3
1 parent 445747c commit 4f391a9

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed
Binary file not shown.

CHANGELOG

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1.8.3 (NR)
1+
1.8.3
22
- (aircast) stream type is LIVE and duration is not part of metadata
33

44
1.8.2

aircast/src/aircast.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include "raop_server.h"
1919
#include "cast_util.h"
2020

21-
#define VERSION "v1.8.3NR"" ("__DATE__" @ "__TIME__")"
21+
#define VERSION "v1.8.3"" ("__DATE__" @ "__TIME__")"
2222

2323
/*----------------------------------------------------------------------------*/
2424
/* typedefs */

aircast/src/cast_util.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ bool CastLoad(struct sCastCtx *Ctx, char *URI, char *ContentType, const char *Na
111111
return false;
112112
}
113113

114-
msg = json_pack("{ss,ss,ss}", "contentId", URI, "streamType", !MetaData->duration ? "LIVE" : "BUFFERED",
114+
msg = json_pack("{ss,ss,ss}", "contentId", URI, "streamType", (MetaData && !MetaData->duration) ? "LIVE" : "BUFFERED",
115115
"contentType", ContentType);
116116

117-
if (MetaData->duration) {
117+
if (MetaData && MetaData->duration) {
118118
json_t* duration = json_pack("{sf}", "duration", (double)MetaData->duration / 1000);
119119
json_object_update(msg, duration);
120120
json_decref(duration);

airupnp/src/airupnp.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "cross_util.h"
2222
#include "metadata.h"
2323

24-
#define VERSION "v1.8.3NR"" ("__DATE__" @ "__TIME__")"
24+
#define VERSION "v1.8.3"" ("__DATE__" @ "__TIME__")"
2525

2626
/*----------------------------------------------------------------------------*/
2727
/* typedefs */

common/libcodecs

Submodule libcodecs updated 112 files

0 commit comments

Comments
 (0)