]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/gxf.c
cosmetics
[ffmpeg] / libavformat / gxf.c
index 3056e35d5a225a81960cc2a0754748edd8676983..7cc1d39108d2a8fff60a43efbbef2ff90d8ceca5 100644 (file)
@@ -17,7 +17,6 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 #include "avformat.h"
-#include "avi.h"
 
 typedef enum {
     PKT_MAP = 0xbc,
@@ -241,7 +240,7 @@ static int gxf_packet(AVFormatContext *s, AVPacket *pkt) {
     return AVERROR_IO;
 }
 
-static AVInputFormat gxf_iformat = {
+AVInputFormat gxf_demuxer = {
     "gxf",
     "GXF format",
     0,
@@ -251,9 +250,3 @@ static AVInputFormat gxf_iformat = {
     NULL,
     NULL,
 };
-
-int gxf_init(void) {
-    av_register_input_format(&gxf_iformat);
-    return 0;
-}
-