X-Git-Url: https://git.videolan.org/?p=ffmpeg.git;a=blobdiff_plain;f=libavformat%2Fogg.c;h=ab47d029a5ea6f9834e67e7ac3429e940c8512c1;hp=c30ccd2f2473eb28921b6bbec032bcbc492bf5d8;hb=9146ca3700a83c267b0f505a38c26b69992beb7d;hpb=a18ba9088042a60f49ada6c85f22f1318cfa0503 diff --git a/libavformat/ogg.c b/libavformat/ogg.c index c30ccd2f24..ab47d029a5 100644 --- a/libavformat/ogg.c +++ b/libavformat/ogg.c @@ -134,7 +134,7 @@ static AVOutputFormat ogg_oformat = { } ; #endif //CONFIG_ENCODERS - +#if 0 static int next_packet(AVFormatContext *avfcontext, ogg_packet *op) { OggContext *context = avfcontext->priv_data ; ogg_page og ; @@ -247,12 +247,12 @@ static AVInputFormat ogg_iformat = { ogg_read_close, .extensions = "ogg", } ; +#endif - -int ogg_init(void) { +int libogg_init(void) { #ifdef CONFIG_ENCODERS av_register_output_format(&ogg_oformat) ; #endif - av_register_input_format(&ogg_iformat); +/* av_register_input_format(&ogg_iformat); */ return 0 ; }