diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-01-14 04:13:33 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2020-02-15 22:11:56 +0100 |
commit | 7b7b418277fc36a864f7b8b449feacb39f2dbced (patch) | |
tree | d86871bf80ca63b227f834b3aa10bdd67b4e4826 /libavformat/segafilmenc.c | |
parent | 6f2e38990caff7ae8cb07675417fbeb9eb1a9f0e (diff) | |
download | ffmpeg-7b7b418277fc36a864f7b8b449feacb39f2dbced.tar.gz |
avformat/segafilmenc: Remove AVClass
This muxer does not have any private options and so does not need a
private class.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/segafilmenc.c')
-rw-r--r-- | libavformat/segafilmenc.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavformat/segafilmenc.c b/libavformat/segafilmenc.c index 28cb7bfc85..29851444b3 100644 --- a/libavformat/segafilmenc.c +++ b/libavformat/segafilmenc.c @@ -45,7 +45,6 @@ typedef struct FILMPacket { } FILMPacket; typedef struct FILMOutputContext { - const AVClass *class; int audio_index; int video_index; int64_t stab_pos; @@ -377,12 +376,6 @@ static int film_write_header(AVFormatContext *format_context) return 0; } -static const AVClass film_muxer_class = { - .class_name = "Sega FILM muxer", - .item_name = av_default_item_name, - .version = LIBAVUTIL_VERSION_INT, -}; - AVOutputFormat ff_segafilm_muxer = { .name = "film_cpk", .long_name = NULL_IF_CONFIG_SMALL("Sega FILM / CPK"), @@ -393,5 +386,4 @@ AVOutputFormat ff_segafilm_muxer = { .init = film_init, .write_trailer = film_write_header, .write_packet = film_write_packet, - .priv_class = &film_muxer_class, }; |