mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-03 05:34:23 -04:00
22 lines
278 B
C
22 lines
278 B
C
#pragma once
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
typedef struct stream
|
|
{
|
|
char *title;
|
|
char *language;
|
|
char *codec;
|
|
bool is_default;
|
|
bool is_forced;
|
|
char *path;
|
|
} stream;
|
|
|
|
#define NULLSTREAM (struct stream) { \
|
|
NULL, \
|
|
NULL, \
|
|
NULL, \
|
|
false, \
|
|
false, \
|
|
NULL \
|
|
} |