Skip to content

Commit

Permalink
1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
philippe44 committed Feb 1, 2024
1 parent 445747c commit 4f391a9
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Binary file renamed AirConnect-1.8.1.zip → AirConnect-1.8.3.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.8.3 (NR)
1.8.3
- (aircast) stream type is LIVE and duration is not part of metadata

1.8.2
Expand Down
2 changes: 1 addition & 1 deletion aircast/src/aircast.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "raop_server.h"
#include "cast_util.h"

#define VERSION "v1.8.3NR"" ("__DATE__" @ "__TIME__")"
#define VERSION "v1.8.3"" ("__DATE__" @ "__TIME__")"

/*----------------------------------------------------------------------------*/
/* typedefs */
Expand Down
4 changes: 2 additions & 2 deletions aircast/src/cast_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ bool CastLoad(struct sCastCtx *Ctx, char *URI, char *ContentType, const char *Na
return false;
}

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

if (MetaData->duration) {
if (MetaData && MetaData->duration) {
json_t* duration = json_pack("{sf}", "duration", (double)MetaData->duration / 1000);
json_object_update(msg, duration);
json_decref(duration);
Expand Down
2 changes: 1 addition & 1 deletion airupnp/src/airupnp.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "cross_util.h"
#include "metadata.h"

#define VERSION "v1.8.3NR"" ("__DATE__" @ "__TIME__")"
#define VERSION "v1.8.3"" ("__DATE__" @ "__TIME__")"

/*----------------------------------------------------------------------------*/
/* typedefs */
Expand Down
2 changes: 1 addition & 1 deletion common/libcodecs
Submodule libcodecs updated 112 files

0 comments on commit 4f391a9

Please sign in to comment.