comparison allcodecs.c @ 2697:4fe1c19fc7a3 libavcodec

Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
author michael
date Tue, 17 May 2005 19:02:43 +0000
parents 5ea2a7f74817
children 485571c9182f
comparison
equal deleted inserted replaced
2696:9699d325049d 2697:4fe1c19fc7a3
53 #endif 53 #endif
54 #ifdef CONFIG_LIBVORBIS 54 #ifdef CONFIG_LIBVORBIS
55 #ifdef CONFIG_OGGVORBIS_ENCODER 55 #ifdef CONFIG_OGGVORBIS_ENCODER
56 register_avcodec(&oggvorbis_encoder); 56 register_avcodec(&oggvorbis_encoder);
57 #endif //CONFIG_OGGVORBIS_ENCODER 57 #endif //CONFIG_OGGVORBIS_ENCODER
58 #ifdef CONFIG_OGGVORBIS_DECODER 58 #if (defined CONFIG_OGGVORBIS_DECODER && !defined CONFIG_VORBIS_DECODER)
59 register_avcodec(&oggvorbis_decoder); 59 register_avcodec(&oggvorbis_decoder);
60 #endif //CONFIG_OGGVORBIS_DECODER 60 #endif //CONFIG_OGGVORBIS_DECODER
61 #endif 61 #endif
62 #ifdef CONFIG_LIBTHEORA 62 #ifdef CONFIG_LIBTHEORA
63 #ifdef CONFIG_OGGTHEORA_ENCODER 63 #ifdef CONFIG_OGGTHEORA_ENCODER
474 register_avcodec(&alac_decoder); 474 register_avcodec(&alac_decoder);
475 #endif //CONFIG_ALAC_DECODER 475 #endif //CONFIG_ALAC_DECODER
476 #ifdef CONFIG_WS_SND1_DECODER 476 #ifdef CONFIG_WS_SND1_DECODER
477 register_avcodec(&ws_snd1_decoder); 477 register_avcodec(&ws_snd1_decoder);
478 #endif //CONFIG_WS_SND1_DECODER 478 #endif //CONFIG_WS_SND1_DECODER
479 #ifdef CONFIG_VORBIS_DECODER
480 register_avcodec(&vorbis_decoder);
481 #endif
479 #endif /* CONFIG_DECODERS */ 482 #endif /* CONFIG_DECODERS */
480 483
481 #ifdef AMR_NB 484 #ifdef AMR_NB
482 #ifdef CONFIG_AMR_NB_DECODER 485 #ifdef CONFIG_AMR_NB_DECODER
483 register_avcodec(&amr_nb_decoder); 486 register_avcodec(&amr_nb_decoder);