]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/dvbsubdec.c
mpeg4videodec: move mpeg4-specific bug detection from h263 generic code to mpeg4
[ffmpeg] / libavcodec / dvbsubdec.c
index b4aba49f09a5b294f9febc56bdbdbe2d662e4ca3..6ce187f85d6cc01158c170bad45e17691cc3a0a0 100644 (file)
@@ -34,8 +34,6 @@
 #define cm (ff_cropTbl + MAX_NEG_CROP)
 
 #ifdef DEBUG
-#undef fprintf
-#undef perror
 #if 0
 static void png_save(const char *filename, uint8_t *bitmap, int w, int h,
                      uint32_t *rgba_palette)
@@ -1465,11 +1463,11 @@ static int dvbsub_decode(AVCodecContext *avctx,
 
 AVCodec ff_dvbsub_decoder = {
     .name           = "dvbsub",
+    .long_name      = NULL_IF_CONFIG_SMALL("DVB subtitles"),
     .type           = AVMEDIA_TYPE_SUBTITLE,
     .id             = AV_CODEC_ID_DVB_SUBTITLE,
     .priv_data_size = sizeof(DVBSubContext),
     .init           = dvbsub_init_decoder,
     .close          = dvbsub_close_decoder,
     .decode         = dvbsub_decode,
-    .long_name      = NULL_IF_CONFIG_SMALL("DVB subtitles"),
 };