diff options
| author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-23 17:18:36 +0100 |
|---|---|---|
| committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-23 17:18:36 +0100 |
| commit | c292a8d56fc0531297775cf64f14190b26b9b216 (patch) | |
| tree | accc87b5b6f1cc2753c941e84c2ff9a9d93a47ae /src/libreal | |
| parent | bc8c21fd7f45233fe6501e4e9a21b33a0c498248 (diff) | |
| download | xine-lib-c292a8d56fc0531297775cf64f14190b26b9b216.tar.gz xine-lib-c292a8d56fc0531297775cf64f14190b26b9b216.tar.bz2 | |
Mark all supported_types constant.
Diffstat (limited to 'src/libreal')
| -rw-r--r-- | src/libreal/xine_real_audio_decoder.c | 2 | ||||
| -rw-r--r-- | src/libreal/xine_real_video_decoder.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libreal/xine_real_audio_decoder.c b/src/libreal/xine_real_audio_decoder.c index 7e5868ca6..b9231a2b7 100644 --- a/src/libreal/xine_real_audio_decoder.c +++ b/src/libreal/xine_real_audio_decoder.c @@ -603,7 +603,7 @@ void *init_realadec (xine_t *xine, void *data) { * exported plugin catalog entry */ -static uint32_t audio_types[] = { +static const uint32_t audio_types[] = { BUF_AUDIO_COOK, BUF_AUDIO_ATRK, /* BUF_AUDIO_14_4, BUF_AUDIO_28_8, */ BUF_AUDIO_SIPRO, 0 }; diff --git a/src/libreal/xine_real_video_decoder.c b/src/libreal/xine_real_video_decoder.c index a32b3d3ef..28fddafda 100644 --- a/src/libreal/xine_real_video_decoder.c +++ b/src/libreal/xine_real_video_decoder.c @@ -531,7 +531,7 @@ void *init_realvdec (xine_t *xine, void *data) { * exported plugin catalog entry */ -static uint32_t supported_types[] = { BUF_VIDEO_RV20, +static const uint32_t supported_types[] = { BUF_VIDEO_RV20, BUF_VIDEO_RV30, BUF_VIDEO_RV40, 0 }; |
