]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/daud.c
move resolve_host from tcp.c to os_support.c as it is used widely
[ffmpeg] / libavformat / daud.c
index f017806cbe1a16c6fb823c488d458bbd9325e091..ec81b7b1ce0d61790434f622b530f19c824cbda3 100644 (file)
@@ -1,19 +1,21 @@
 /*
- * D-Cinema audio decoder.
+ * D-Cinema audio demuxer
  * Copyright (c) 2005 Reimar Döffinger.
  *
- * This library is free software; you can redistribute it and/or
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
+ * version 2.1 of the License, or (at your option) any later version.
  *
- * This library is distributed in the hope that it will be useful,
+ * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
+ * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 #include "avformat.h"
@@ -43,7 +45,7 @@ static int daud_packet(AVFormatContext *s, AVPacket *pkt) {
     return ret;
 }
 
-static AVInputFormat daud_iformat = {
+AVInputFormat daud_demuxer = {
     "daud",
     "D-Cinema audio format",
     0,
@@ -54,10 +56,3 @@ static AVInputFormat daud_iformat = {
     NULL,
     .extensions = "302",
 };
-
-int daud_init(void)
-{
-    av_register_input_format(&daud_iformat);
-    return 0;
-}
-