# HG changeset patch # User gpoirier # Date 1160837325 0 # Node ID 6d4ac21853d7ec88824541aacf79fcfc7517796b # Parent 9c8ab288ebf6862f83b10c920e996505c21b7a35 Remove empty structures, Patch by Steve LHomme Original thread: Date: 13.10.2006 21:55 Subject: [Ffmpeg-devel] [PATCH] Remove empty structures diff -r 9c8ab288ebf6 -r 6d4ac21853d7 dvdsub.c --- a/dvdsub.c Sat Oct 14 12:23:54 2006 +0000 +++ b/dvdsub.c Sat Oct 14 14:48:45 2006 +0000 @@ -22,9 +22,6 @@ //#define DEBUG -typedef struct DVDSubContext { -} DVDSubContext; - static int dvdsub_init_decoder(AVCodecContext *avctx) { return 0; @@ -412,7 +409,7 @@ "dvdsub", CODEC_TYPE_SUBTITLE, CODEC_ID_DVD_SUBTITLE, - sizeof(DVDSubContext), + 0, dvdsub_init_decoder, NULL, dvdsub_close_decoder, diff -r 9c8ab288ebf6 -r 6d4ac21853d7 dvdsubenc.c --- a/dvdsubenc.c Sat Oct 14 12:23:54 2006 +0000 +++ b/dvdsubenc.c Sat Oct 14 14:48:45 2006 +0000 @@ -23,9 +23,6 @@ #undef NDEBUG #include -typedef struct DVDSubtitleContext { -} DVDSubtitleContext; - // ncnt is the nibble counter #define PUTNIBBLE(val)\ do {\ @@ -239,7 +236,7 @@ "dvdsub", CODEC_TYPE_SUBTITLE, CODEC_ID_DVD_SUBTITLE, - sizeof(DVDSubtitleContext), + 0, dvdsub_init_encoder, dvdsub_encode, dvdsub_close_encoder, diff -r 9c8ab288ebf6 -r 6d4ac21853d7 ws-snd1.c --- a/ws-snd1.c Sat Oct 14 12:23:54 2006 +0000 +++ b/ws-snd1.c Sat Oct 14 14:48:45 2006 +0000 @@ -29,9 +29,6 @@ * http://www.multimedia.cx */ -typedef struct { -} WSSNDContext; - static const char ws_adpcm_2bit[] = { -2, -1, 0, 1}; static const char ws_adpcm_4bit[] = { -9, -8, -6, -5, -4, -3, -2, -1, @@ -139,7 +136,7 @@ "ws_snd1", CODEC_TYPE_AUDIO, CODEC_ID_WESTWOOD_SND1, - sizeof(WSSNDContext), + 0, ws_snd_decode_init, NULL, NULL,