comparison allcodecs.c @ 2967:ef2149182f1c libavcodec

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents 5f51b1e0bed6
children 583b6ac45c07
comparison
equal deleted inserted replaced
2966:564788471dd4 2967:ef2149182f1c
26 26
27 /* If you do not call this function, then you can select exactly which 27 /* If you do not call this function, then you can select exactly which
28 formats you want to support */ 28 formats you want to support */
29 29
30 /** 30 /**
31 * simple call to register all the codecs. 31 * simple call to register all the codecs.
32 */ 32 */
33 void avcodec_register_all(void) 33 void avcodec_register_all(void)
34 { 34 {
35 static int inited = 0; 35 static int inited = 0;
36 36
37 if (inited != 0) 37 if (inited != 0)
38 return; 38 return;
39 inited = 1; 39 inited = 1;
40 40
41 /* encoders */ 41 /* encoders */
587 #endif 587 #endif
588 #ifdef CONFIG_DVBSUB_ENCODER 588 #ifdef CONFIG_DVBSUB_ENCODER
589 register_avcodec(&dvbsub_encoder); 589 register_avcodec(&dvbsub_encoder);
590 #endif 590 #endif
591 591
592 /* parsers */ 592 /* parsers */
593 av_register_codec_parser(&mpegvideo_parser); 593 av_register_codec_parser(&mpegvideo_parser);
594 av_register_codec_parser(&mpeg4video_parser); 594 av_register_codec_parser(&mpeg4video_parser);
595 #if defined(CONFIG_H261_DECODER) || defined(CONFIG_H261_ENCODER) 595 #if defined(CONFIG_H261_DECODER) || defined(CONFIG_H261_ENCODER)
596 av_register_codec_parser(&h261_parser); 596 av_register_codec_parser(&h261_parser);
597 #endif 597 #endif