diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-13 17:05:34 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-13 17:05:34 +0100 |
commit | 19fe66af4ad12c5e40f2b687268df17b8d9c6be8 (patch) | |
tree | 24068a0d3dc6dc6291d41ff2c91c75206f34ff95 /src | |
parent | 275b1a65bac1e8d03767d78e47f2d55c70645f6b (diff) | |
download | xine-lib-19fe66af4ad12c5e40f2b687268df17b8d9c6be8.tar.gz xine-lib-19fe66af4ad12c5e40f2b687268df17b8d9c6be8.tar.bz2 |
Make parse_data_atom accept a constant buffer, removes warnings.
Diffstat (limited to 'src')
-rw-r--r-- | src/demuxers/demux_qt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index 975418b4c..ab0afde3b 100644 --- a/src/demuxers/demux_qt.c +++ b/src/demuxers/demux_qt.c @@ -736,7 +736,7 @@ static int is_qt_file(input_plugin_t *qt_file) { } } -static char *parse_data_atom(unsigned char *data_atom) { +static char *parse_data_atom(const uint8_t *data_atom) { const uint32_t data_atom_size = _X_BE_32(&data_atom[0]); static const int data_atom_max_version = 0; |