mirror of
https://github.com/albfan/miraclecast.git
synced 2025-03-09 23:38:56 +00:00
miracle-*ctl: add *_from_string() and *_to_string() for wfd-video-formats and
wfd-audio-codecs
This commit is contained in:
parent
761219d998
commit
3bcb8f51f6
2 changed files with 334 additions and 0 deletions
285
src/ctl/wfd.c
285
src/ctl/wfd.c
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <string.h>
|
||||||
#include "ctl.h"
|
#include "ctl.h"
|
||||||
#include "wfd.h"
|
#include "wfd.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
@ -347,3 +348,287 @@ int wfd_sube_parse_with_id(enum wfd_sube_id id,
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int wfd_video_formats_from_string(const char *l,
|
||||||
|
struct wfd_video_formats **out)
|
||||||
|
{
|
||||||
|
_shl_free_ struct wfd_video_formats *f = NULL;
|
||||||
|
uint8_t native, pref_disp_mode_sup;
|
||||||
|
int r, i, n_codecs;
|
||||||
|
const char *p;
|
||||||
|
char max_hres[5], max_vres[5];
|
||||||
|
|
||||||
|
assert(l);
|
||||||
|
|
||||||
|
if(!strncmp("none", l, 4)) {
|
||||||
|
if(out) {
|
||||||
|
*out = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
r = sscanf(l, "%2hhx %2hhx", &native, &pref_disp_mode_sup);
|
||||||
|
if(2 != r) {
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
l += 6;
|
||||||
|
|
||||||
|
for(p = l, n_codecs = 1; (p = strchrnul(p, ','), *p); ++ n_codecs, ++ p);
|
||||||
|
|
||||||
|
f = malloc(sizeof(*f) + (sizeof(f->h264_codecs[0]) * n_codecs));
|
||||||
|
if(!f) {
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
for(i = 0; i < n_codecs; i ++) {
|
||||||
|
r = sscanf(l,
|
||||||
|
"%2hhx %2hhx %8x %8x %8x %2hhx %4hx %4hx %2hhx %4s %4s",
|
||||||
|
&f->h264_codecs[i].profile,
|
||||||
|
&f->h264_codecs[i].level,
|
||||||
|
&f->h264_codecs[i].cea_sup,
|
||||||
|
&f->h264_codecs[i].vesa_sup,
|
||||||
|
&f->h264_codecs[i].hh_sup,
|
||||||
|
&f->h264_codecs[i].latency,
|
||||||
|
&f->h264_codecs[i].min_slice_size,
|
||||||
|
&f->h264_codecs[i].slice_enc_params,
|
||||||
|
&f->h264_codecs[i].frame_rate_ctrl_sup,
|
||||||
|
max_hres,
|
||||||
|
max_vres);
|
||||||
|
if(11 != r) {
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
errno = 0;
|
||||||
|
|
||||||
|
f->h264_codecs[i].max_hres = !strncmp("none", max_hres, 4)
|
||||||
|
? 0
|
||||||
|
: strtoul(max_hres, NULL, 16);
|
||||||
|
if(errno) {
|
||||||
|
return -errno;
|
||||||
|
}
|
||||||
|
|
||||||
|
f->h264_codecs[i].max_vres = !strncmp("none", max_vres, 4)
|
||||||
|
? 0
|
||||||
|
: strtoul(max_vres, NULL, 16);
|
||||||
|
if(errno) {
|
||||||
|
return -errno;
|
||||||
|
}
|
||||||
|
|
||||||
|
l += 60;
|
||||||
|
}
|
||||||
|
|
||||||
|
f->native = native;
|
||||||
|
f->pref_disp_mode_sup = pref_disp_mode_sup;
|
||||||
|
f->n_h264_codecs = n_codecs;
|
||||||
|
|
||||||
|
if(out) {
|
||||||
|
*out = f;
|
||||||
|
f = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline const char * int16_to_res(int16_t v, char *b)
|
||||||
|
{
|
||||||
|
if(!v) {
|
||||||
|
return "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
sprintf(b, "%04hX", v);
|
||||||
|
|
||||||
|
return b;
|
||||||
|
}
|
||||||
|
|
||||||
|
int wfd_video_formats_to_string(struct wfd_video_formats *f, char **out)
|
||||||
|
{
|
||||||
|
_shl_free_ char *s = NULL;
|
||||||
|
char *p, b1[5], b2[5];
|
||||||
|
size_t len = 6;
|
||||||
|
int r, i;
|
||||||
|
|
||||||
|
assert(f);
|
||||||
|
assert(out);
|
||||||
|
|
||||||
|
len += (f->n_h264_codecs ? f->n_h264_codecs * 60 : 6);
|
||||||
|
p = s = malloc(len);
|
||||||
|
if(!s) {
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
r = snprintf(p, len, "%02hhX %02hhX ", f->native, f->pref_disp_mode_sup);
|
||||||
|
if(0 > r) {
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
p += r;
|
||||||
|
len -= r;
|
||||||
|
|
||||||
|
if(!f->n_h264_codecs) {
|
||||||
|
strcat(p, " none");
|
||||||
|
goto end;
|
||||||
|
}
|
||||||
|
|
||||||
|
for(i = 0; i < f->n_h264_codecs; ++ i) {
|
||||||
|
r = snprintf(p, len,
|
||||||
|
"%02hhX %02hhX %08X %08X %08X %02hhX %04hX %04hX %02hhX %s %s, ",
|
||||||
|
f->h264_codecs[i].profile,
|
||||||
|
f->h264_codecs[i].level,
|
||||||
|
f->h264_codecs[i].cea_sup,
|
||||||
|
f->h264_codecs[i].vesa_sup,
|
||||||
|
f->h264_codecs[i].hh_sup,
|
||||||
|
f->h264_codecs[i].latency,
|
||||||
|
f->h264_codecs[i].min_slice_size,
|
||||||
|
f->h264_codecs[i].slice_enc_params,
|
||||||
|
f->h264_codecs[i].frame_rate_ctrl_sup,
|
||||||
|
int16_to_res(f->h264_codecs[i].max_hres, b1),
|
||||||
|
int16_to_res(f->h264_codecs[i].max_vres, b2));
|
||||||
|
if(0 > r) {
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
p += r;
|
||||||
|
len -= r;
|
||||||
|
}
|
||||||
|
|
||||||
|
p[-2] = '\0';
|
||||||
|
|
||||||
|
end:
|
||||||
|
*out = s;
|
||||||
|
s = NULL;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int wfd_audio_format_from_string(const char *s, enum wfd_audio_format *f)
|
||||||
|
{
|
||||||
|
enum wfd_audio_format t = WFD_AUDIO_FORMAT_UNKNOWN;
|
||||||
|
if(s) {
|
||||||
|
if(!strncmp("LPCM", s, 4)) {
|
||||||
|
t = WFD_AUDIO_FORMAT_LPCM;
|
||||||
|
}
|
||||||
|
else if(!strncmp("AAC", s, 3)) {
|
||||||
|
t = WFD_AUDIO_FORMAT_AAC;
|
||||||
|
}
|
||||||
|
else if(!strncmp("AC3", s, 3)) {
|
||||||
|
t = WFD_AUDIO_FORMAT_AC3;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(WFD_AUDIO_FORMAT_UNKNOWN != t) {
|
||||||
|
if(f) {
|
||||||
|
*f = t;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
const char * wfd_audio_format_to_string(enum wfd_audio_format f)
|
||||||
|
{
|
||||||
|
switch(f) {
|
||||||
|
case WFD_AUDIO_FORMAT_LPCM:
|
||||||
|
return "LPCM";
|
||||||
|
case WFD_AUDIO_FORMAT_AAC:
|
||||||
|
return "AAC";
|
||||||
|
case WFD_AUDIO_FORMAT_AC3:
|
||||||
|
return "AC3";
|
||||||
|
default:
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int wfd_audio_codecs_from_string(const char *l,
|
||||||
|
struct wfd_audio_codecs **out)
|
||||||
|
{
|
||||||
|
_shl_free_ struct wfd_audio_codecs *c = NULL;
|
||||||
|
_shl_free_ char *f = NULL;
|
||||||
|
int r, i, n_caps;
|
||||||
|
const char *p;
|
||||||
|
|
||||||
|
assert(l);
|
||||||
|
|
||||||
|
if(!strncmp("none", l, 4)) {
|
||||||
|
if(out) {
|
||||||
|
*out = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
for(p = l, n_caps = 1; (p = strchrnul(p, ','), *p); ++ n_caps, ++ p);
|
||||||
|
|
||||||
|
c = malloc(sizeof(struct wfd_audio_codecs)
|
||||||
|
+ (sizeof(c->caps[0]) * n_caps));
|
||||||
|
|
||||||
|
for(i = 0; i < n_caps; i ++) {
|
||||||
|
r = sscanf(l, "%ms %8x %2hhx",
|
||||||
|
&f,
|
||||||
|
&c->caps[i].modes,
|
||||||
|
&c->caps[i].latency);
|
||||||
|
if(r != 3) {
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
r = wfd_audio_format_from_string(f, &c->caps[i].format);
|
||||||
|
if(0 > r) {
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
l += 16;
|
||||||
|
if(WFD_AUDIO_FORMAT_LPCM == c->caps[i].format) {
|
||||||
|
++ l;
|
||||||
|
}
|
||||||
|
|
||||||
|
free(f);
|
||||||
|
f = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
c->n_caps = n_caps;
|
||||||
|
|
||||||
|
if(out) {
|
||||||
|
*out = c;
|
||||||
|
c = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int wfd_audio_codecs_to_string(struct wfd_audio_codecs *c, char **out)
|
||||||
|
{
|
||||||
|
_shl_free_ char *s = NULL;
|
||||||
|
char *p;
|
||||||
|
int r, i;
|
||||||
|
size_t len;
|
||||||
|
|
||||||
|
assert(c);
|
||||||
|
assert(out);
|
||||||
|
|
||||||
|
len = c->n_caps * 18;
|
||||||
|
p = s = malloc(len);
|
||||||
|
if(!s) {
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
for(i = 0; i < c->n_caps; i ++) {
|
||||||
|
r = snprintf(p, len, "%s %08X %02hhX, ",
|
||||||
|
wfd_audio_format_to_string(c->caps[i].format),
|
||||||
|
c->caps[i].modes,
|
||||||
|
c->caps[i].latency);
|
||||||
|
if(0 > r) {
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
p += r;
|
||||||
|
len -= r;
|
||||||
|
}
|
||||||
|
|
||||||
|
p[-2] = '\n';
|
||||||
|
*out = s;
|
||||||
|
s = NULL;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
#define WFD_H
|
#define WFD_H
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
#define wfd_sube_is_device_info(w) (WFD_SUBE_ID_DEVICE_INFO == (w)->id)
|
#define wfd_sube_is_device_info(w) (WFD_SUBE_ID_DEVICE_INFO == (w)->id)
|
||||||
|
|
||||||
|
@ -56,6 +57,14 @@ enum wfd_resolution_standard
|
||||||
WFD_RESOLUTION_STANDARD_HH,
|
WFD_RESOLUTION_STANDARD_HH,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum wfd_audio_format
|
||||||
|
{
|
||||||
|
WFD_AUDIO_FORMAT_UNKNOWN,
|
||||||
|
WFD_AUDIO_FORMAT_LPCM,
|
||||||
|
WFD_AUDIO_FORMAT_AAC,
|
||||||
|
WFD_AUDIO_FORMAT_AC3
|
||||||
|
};
|
||||||
|
|
||||||
union wfd_sube
|
union wfd_sube
|
||||||
{
|
{
|
||||||
enum wfd_sube_id id;
|
enum wfd_sube_id id;
|
||||||
|
@ -97,6 +106,36 @@ union wfd_sube
|
||||||
} extended_caps;
|
} extended_caps;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct wfd_video_formats
|
||||||
|
{
|
||||||
|
uint8_t native;
|
||||||
|
uint8_t pref_disp_mode_sup;
|
||||||
|
size_t n_h264_codecs;
|
||||||
|
struct {
|
||||||
|
uint8_t profile;
|
||||||
|
uint8_t level;
|
||||||
|
uint32_t cea_sup;
|
||||||
|
uint32_t vesa_sup;
|
||||||
|
uint32_t hh_sup;
|
||||||
|
uint8_t latency;
|
||||||
|
uint16_t min_slice_size;
|
||||||
|
uint16_t slice_enc_params;
|
||||||
|
uint8_t frame_rate_ctrl_sup;
|
||||||
|
uint16_t max_hres;
|
||||||
|
uint16_t max_vres;
|
||||||
|
} h264_codecs[0];
|
||||||
|
};
|
||||||
|
|
||||||
|
struct wfd_audio_codecs
|
||||||
|
{
|
||||||
|
size_t n_caps;
|
||||||
|
struct {
|
||||||
|
enum wfd_audio_format format;
|
||||||
|
uint32_t modes;
|
||||||
|
uint8_t latency;
|
||||||
|
} caps[0];
|
||||||
|
};
|
||||||
|
|
||||||
struct wfd_resolution
|
struct wfd_resolution
|
||||||
{
|
{
|
||||||
uint16_t index;
|
uint16_t index;
|
||||||
|
@ -117,6 +156,16 @@ int wfd_sube_parse(const char *in, union wfd_sube *out);
|
||||||
int wfd_sube_parse_with_id(enum wfd_sube_id id,
|
int wfd_sube_parse_with_id(enum wfd_sube_id id,
|
||||||
const char *in,
|
const char *in,
|
||||||
union wfd_sube *out);
|
union wfd_sube *out);
|
||||||
|
int wfd_video_formats_from_string(const char *l,
|
||||||
|
struct wfd_video_formats **out);
|
||||||
|
static inline void wfd_video_formats_free(struct wfd_video_formats *f) { free(f); }
|
||||||
|
int wfd_video_formats_to_string(struct wfd_video_formats *f, char **out);
|
||||||
|
int wfd_audio_codecs_from_string(const char *l,
|
||||||
|
struct wfd_audio_codecs **out);
|
||||||
|
static inline void wfd_audio_codecs_free(struct wfd_audio_codecs *c) { free(c); }
|
||||||
|
int wfd_audio_codecs_to_string(struct wfd_audio_codecs *c, char **out);
|
||||||
|
int wfd_audio_format_from_string(const char *s, enum wfd_audio_format *f);
|
||||||
|
const char * wfd_audio_format_to_string(enum wfd_audio_format f);
|
||||||
|
|
||||||
static inline int wfd_sube_device_get_type(const union wfd_sube *sube)
|
static inline int wfd_sube_device_get_type(const union wfd_sube *sube)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue