From: Jaroslav Kysela Date: Mon, 11 Sep 2017 11:47:41 +0000 (+0200) Subject: transcode: another struct type cleanups X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a22460d0d726786c54a5f082ad3d5df5d131636b;p=thirdparty%2Ftvheadend.git transcode: another struct type cleanups --- diff --git a/src/transcoding/codec/internals.h b/src/transcoding/codec/internals.h index dcee72468..63e83338b 100644 --- a/src/transcoding/codec/internals.h +++ b/src/transcoding/codec/internals.h @@ -169,7 +169,7 @@ tvh_codec_get_list_profiles(TVHCodec *self); /* codec_profile_video_class */ -typedef struct tvh_codec_video_t { +typedef struct tvh_codec_video { TVHCodec; const enum AVPixelFormat *pix_fmts; } TVHVideoCodec; @@ -177,7 +177,7 @@ typedef struct tvh_codec_video_t { /* 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; @@ -207,7 +207,7 @@ tvh_codec_profiles_remove(void); 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; @@ -222,7 +222,7 @@ typedef struct tvh_codec_profile_video_t { 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;