blob: e61ee42912a0aa123529c05f8464542547c67831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <al/str.h>
struct camu_codec_info {
str id;
str name;
s32 *supported;
struct camu_demuxer *(*create_demuxer)(void);
struct camu_decoder *(*create_decoder)(void);
};
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_id(str *id);
|