diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-21 16:22:14 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-21 16:22:14 +0200 |
commit | 298b1af403ef1e7da8d5537ccadb1bdaeebea756 (patch) | |
tree | a56e533661af5d062ff61c6d8a6723a7dc293672 | |
parent | 39e241685808c41d927a8c94839a4e12707b6a3f (diff) | |
download | xine-lib-298b1af403ef1e7da8d5537ccadb1bdaeebea756.tar.gz xine-lib-298b1af403ef1e7da8d5537ccadb1bdaeebea756.tar.bz2 |
Mark bandwidths array static.
-rw-r--r-- | src/demuxers/demux_qt.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index aa2ad8955..9ba54dbb1 100644 --- a/src/demuxers/demux_qt.c +++ b/src/demuxers/demux_qt.c @@ -135,8 +135,10 @@ typedef unsigned int qt_atom; #define MAX_PTS_DIFF 100000 -/* network bandwidth, cribbed from src/input/input_mms.c */ -const int64_t bandwidths[]={14400,19200,28800,33600,34430,57600, +/** + * @brief Network bandwidth, cribbed from src/input/input_mms.c + */ +static const int64_t bandwidths[]={14400,19200,28800,33600,34430,57600, 115200,262200,393216,524300,1544000,10485800}; /* these are things that can go wrong */ |