diff options
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); |