diff options
| author | 2026-09-07 15:06:14 -0400 | |
|---|---|---|
| committer | 2026-09-07 15:06:14 -0400 | |
| commit | c66c7c64ebd16287b892f8a780cffcabafba3799 (patch) | |
| tree | b2195902ef055147878b591cf1171be7e6133c97 /src/codec/codecs.h | |
| parent | 1758ae9e860bd3b65b661e3c804288c3599f4fd4 (diff) | |
| download | camu-c66c7c64ebd16287b892f8a780cffcabafba3799.tar.gz camu-c66c7c64ebd16287b892f8a780cffcabafba3799.tar.bz2 camu-c66c7c64ebd16287b892f8a780cffcabafba3799.zip | |
Better OSD behavior, lots of build stuff
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/codec/codecs.h')
| -rw-r--r-- | src/codec/codecs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/codec/codecs.h b/src/codec/codecs.h index d383eec..e61ee42 100644 --- a/src/codec/codecs.h +++ b/src/codec/codecs.h @@ -3,6 +3,7 @@ #include <al/str.h> struct camu_codec_info { + str id; str name; s32 *supported; struct camu_demuxer *(*create_demuxer)(void); @@ -12,4 +13,4 @@ struct camu_codec_info { extern struct camu_codec_info codec_information[]; struct camu_codec_info *camu_codec_info_by_type(s32 type); -struct camu_codec_info *camu_codec_info_by_name(str *name); +struct camu_codec_info *camu_codec_info_by_id(str *id); |