diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/codecs/libwmapro/Makefile | 11 | ||||
-rw-r--r-- | apps/codecs/libwmapro/wmaprodec.c | 6 |
2 files changed, 0 insertions, 17 deletions
diff --git a/apps/codecs/libwmapro/Makefile b/apps/codecs/libwmapro/Makefile deleted file mode 100644 index 74334ffad5..0000000000 --- a/apps/codecs/libwmapro/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -STD = c99 -LINK = -lm -CFLAGS = -Wall -std=$(STD) -TARGET = test -OBJS = wmaprodec.c wma.c dsputil.c mdct.c fft.c bitstream.c libavutil/log.c libavutil/mem.c libavutil/mathematics.c -$(TARGET): $(OBJS) - gcc $(CFLAGS) $(OBJS) $(LINK) -o $(TARGET) - -clean: - rm -f $(TARGET) *~ *.o libavutil/*.o - diff --git a/apps/codecs/libwmapro/wmaprodec.c b/apps/codecs/libwmapro/wmaprodec.c index e72919434c..9d9e2cbc61 100644 --- a/apps/codecs/libwmapro/wmaprodec.c +++ b/apps/codecs/libwmapro/wmaprodec.c @@ -1599,9 +1599,3 @@ AVCodec wmapro_decoder = { .long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio 9 Professional"), }; #endif - -int main(void) -{ - /* possible test program - just here now to ensure linking is done properly */ - return 0; -} |