comparison libmpdemux/stheader.h @ 27397:d47744b95b78

Give a CONFIG_ prefix to preprocessor directives that lacked one and change arbitrary prefixes to CONFIG_.
author diego
date Thu, 07 Aug 2008 12:20:50 +0000
parents e7c989f7a7c9
children 3ac3d3a51934
comparison
equal deleted inserted replaced
27396:51438cb89305 27397:d47744b95b78
36 int a_out_buffer_len; 36 int a_out_buffer_len;
37 int a_out_buffer_size; 37 int a_out_buffer_size;
38 // void* audio_out; // the audio_out handle, used for this audio stream 38 // void* audio_out; // the audio_out handle, used for this audio stream
39 struct af_stream_s *afilter; // the audio filter stream 39 struct af_stream_s *afilter; // the audio filter stream
40 struct ad_functions_s* ad_driver; 40 struct ad_functions_s* ad_driver;
41 #ifdef DYNAMIC_PLUGINS 41 #ifdef CONFIG_DYNAMIC_PLUGINS
42 void *dec_handle; 42 void *dec_handle;
43 #endif 43 #endif
44 // win32-compatible codec parameters: 44 // win32-compatible codec parameters:
45 AVIStreamHeader audio; 45 AVIStreamHeader audio;
46 WAVEFORMATEX* wf; 46 WAVEFORMATEX* wf;
81 int disp_w,disp_h; // display size (filled by fileformat parser) 81 int disp_w,disp_h; // display size (filled by fileformat parser)
82 // output driver/filters: (set by libmpcodecs core) 82 // output driver/filters: (set by libmpcodecs core)
83 unsigned int outfmtidx; 83 unsigned int outfmtidx;
84 struct vf_instance_s *vfilter; // the video filter chain, used for this video stream 84 struct vf_instance_s *vfilter; // the video filter chain, used for this video stream
85 int vf_initialized; 85 int vf_initialized;
86 #ifdef DYNAMIC_PLUGINS 86 #ifdef CONFIG_DYNAMIC_PLUGINS
87 void *dec_handle; 87 void *dec_handle;
88 #endif 88 #endif
89 // win32-compatible codec parameters: 89 // win32-compatible codec parameters:
90 AVIStreamHeader video; 90 AVIStreamHeader video;
91 BITMAPINFOHEADER* bih; 91 BITMAPINFOHEADER* bih;