Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/gif.c')
-rw-r--r--libavformat/gif.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/gif.c b/libavformat/gif.c
index 6becf52a49..5791502fda 100644
--- a/libavformat/gif.c
+++ b/libavformat/gif.c
@@ -367,9 +367,11 @@ static AVOutputFormat gif_oformat = {
gif_write_packet,
gif_write_trailer,
};
+extern AVInputFormat gif_iformat;
int gif_init(void)
{
av_register_output_format(&gif_oformat);
+ av_register_input_format(&gif_iformat);
return 0;
}