]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/sol.c
indention
[ffmpeg] / libavformat / sol.c
index f7cad006f2824eeff8554cf0a2119bfa0ea37e69..20e45f75d2dda1329f621244cba67e1d17584b30 100644 (file)
@@ -1,19 +1,21 @@
 /*
- * Sierra SOL decoder
+ * Sierra SOL demuxer
  * Copyright Konstantin Shishkov.
  *
- * 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
  */
 
@@ -23,7 +25,7 @@
 
 #include "avformat.h"
 #include "allformats.h"
-#include "avi.h"
+#include "riff.h"
 #include "bswap.h"
 
 /* if we don't know the size in advance */
@@ -146,7 +148,7 @@ static int sol_read_close(AVFormatContext *s)
     return 0;
 }
 
-static AVInputFormat sol_demuxer = {
+AVInputFormat sol_demuxer = {
     "sol",
     "Sierra SOL Format",
     0,
@@ -156,9 +158,3 @@ static AVInputFormat sol_demuxer = {
     sol_read_close,
     pcm_read_seek,
 };
-
-int sol_init(void)
-{
-    av_register_input_format(&sol_demuxer);
-    return 0;
-}