]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/crcenc.c
asfdec: move DAR list to ASFContext
[ffmpeg] / libavformat / crcenc.c
index dd88031618e2fee27b403fddfe78eec57c5cd0ad..2f9a099a21f3534e073cac97215c3b9715298ea0 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * CRC encoder (for codec/format testing)
- * Copyright (c) 2002 Fabrice Bellard.
+ * Copyright (c) 2002 Fabrice Bellard
  *
  * This file is part of FFmpeg.
  *
@@ -18,8 +18,9 @@
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
+
+#include "libavutil/adler32.h"
 #include "avformat.h"
-#include "adler32.h"
 
 typedef struct CRCState {
     uint32_t crcval;
@@ -53,9 +54,9 @@ static int crc_write_trailer(struct AVFormatContext *s)
     return 0;
 }
 
-AVOutputFormat crc_muxer = {
+AVOutputFormat ff_crc_muxer = {
     "crc",
-    "crc testing format",
+    NULL_IF_CONFIG_SMALL("CRC testing format"),
     NULL,
     "",
     sizeof(CRCState),