/* codec_profile_video_class */
-typedef struct tvh_codec_video_t {
+typedef struct tvh_codec_video {
TVHCodec;
const enum AVPixelFormat *pix_fmts;
} TVHVideoCodec;
/* codec_profile_audio_class */
-typedef struct tvh_codec_audio_t {
+typedef struct tvh_codec_audio {
TVHCodec;
const enum AVSampleFormat *sample_fmts;
const int *sample_rates;
extern const codec_profile_class_t codec_profile_video_class;
-typedef struct tvh_codec_profile_video_t {
+typedef struct tvh_codec_profile_video {
TVHCodecProfile;
int deinterlace;
int height;
extern const codec_profile_class_t codec_profile_audio_class;
-typedef struct tvh_codec_profile_audio_t {
+typedef struct tvh_codec_profile_audio {
TVHCodecProfile;
int tracks;
const char *language1;