Commit 112507e3 authored by diego's avatar diego

Comment out WMV3 decoder for now, it crashes on every file and causes

bug report spam.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4817 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7281c9fd
...@@ -226,9 +226,11 @@ void avcodec_register_all(void) ...@@ -226,9 +226,11 @@ void avcodec_register_all(void)
#ifdef CONFIG_VC9_DECODER #ifdef CONFIG_VC9_DECODER
register_avcodec(&vc9_decoder); register_avcodec(&vc9_decoder);
#endif //CONFIG_VC9_DECODER #endif //CONFIG_VC9_DECODER
/* Reenable when it stops crashing on every file, causing bug report spam.
#ifdef CONFIG_WMV3_DECODER #ifdef CONFIG_WMV3_DECODER
register_avcodec(&wmv3_decoder); register_avcodec(&wmv3_decoder);
#endif //CONFIG_WMV3_DECODER #endif //CONFIG_WMV3_DECODER
*/
#ifdef CONFIG_H263I_DECODER #ifdef CONFIG_H263I_DECODER
register_avcodec(&h263i_decoder); register_avcodec(&h263i_decoder);
#endif //CONFIG_H263I_DECODER #endif //CONFIG_H263I_DECODER
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment