diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-13 16:48:33 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-13 16:48:33 +0100 |
commit | 5d32ff5f16722a31c55fbdb07f3c879e155d63b5 (patch) | |
tree | eb01d26417c99316e96959f2f0397c545c9c7008 | |
parent | 2e83cf4e89a170f13965e1fe801761016052fa7d (diff) | |
download | xine-lib-5d32ff5f16722a31c55fbdb07f3c879e155d63b5.tar.gz xine-lib-5d32ff5f16722a31c55fbdb07f3c879e155d63b5.tar.bz2 |
Add two missing types to constants.
-rw-r--r-- | src/demuxers/demux_qt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index 3f23ddce2..3d05a953f 100644 --- a/src/demuxers/demux_qt.c +++ b/src/demuxers/demux_qt.c @@ -938,8 +938,8 @@ static qt_error parse_trak_atom (qt_trak *trak, /* search for the useful atoms */ for (i = ATOM_PREAMBLE_SIZE; i < trak_atom_size - 4; i++) { - const current_atom_size = _X_BE_32(&trak_atom[i - 4]); - const current_atom = _X_BE_32(&trak_atom[i]); + const uint32_t current_atom_size = _X_BE_32(&trak_atom[i - 4]); + const qt_atom current_atom = _X_BE_32(&trak_atom[i]); switch(current_atom) { case TKHD_ATOM: |