diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-04 13:19:00 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-04 13:19:00 +0200 |
commit | 4bc3f24d3a85f682707851e6865a2c890c326c2c (patch) | |
tree | f14bb8112bcd08a17b9c4b6aab74b7cf61a8b42a /src | |
parent | 22dd2d33da401a9d876725fbe36e86552aa16fb7 (diff) | |
download | xine-lib-4bc3f24d3a85f682707851e6865a2c890c326c2c.tar.gz xine-lib-4bc3f24d3a85f682707851e6865a2c890c326c2c.tar.bz2 |
Mark audiocs_rates static and const.
Diffstat (limited to 'src')
-rw-r--r-- | src/audio_out/audio_sun_out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_out/audio_sun_out.c b/src/audio_out/audio_sun_out.c index 486c06342..ca91a8fe6 100644 --- a/src/audio_out/audio_sun_out.c +++ b/src/audio_out/audio_sun_out.c @@ -332,7 +332,7 @@ find_close_samplerate_match(int dev, int sample_rate) #else int i, err; - int audiocs_rates[] = { + static const int audiocs_rates[] = { 5510, 6620, 8000, 9600, 11025, 16000, 18900, 22050, 27420, 32000, 33075, 37800, 44100, 48000, 0 }; |