Could you please make vlc player able to play animated ".gif"s please.
Version 2.0.1 can open them but get no picture and I was looking forward to finally using a good frame-by-frame .gif (animated) viewer for windows 7(32-bit). QuickTime tries but it doesn't do frame by frame and doesn't erase the previous image. =(
FWIW, ffmpeg now has an animated GIF decoder (libav doesn't though). However image.c has a higher priority (10) than the avformat demuxer (2).
I just made the test, and commenting out the GIF89a entry in the formats table in modules/demux/image.c just makes VLC use libavformat instead and it just works fine playing the animation.
I'm not sure how to do the fallback properly though... (no, there isn't a clear distinction in the header, you have to count the frames)
Probably GIF should be dropped from the image demuxer as @mmu_man mentioned in #6697 (comment 181734) or a specific demuxer should be written for GIF (separate from the image demuxer).