diff options
author | Luca Barbato | 2014-12-04 12:00:01 +0100 |
---|---|---|
committer | Vittorio Giovara | 2014-12-04 13:14:28 +0000 |
commit | 1c77ead1fb14d64e6798fc5e32af04abcb3cebb4 (patch) | |
tree | 11cb13fd52c8cb23839758837cdaef5e8803f26f /libavformat/rdt.c | |
parent | 1eec9bfc383f6dca29d83a2bfb45433dd66561c9 (diff) |
rm: Use the correct codec_data_size signedness
The function takes a size and not an offset.
CC: libav-stable@libav.org
Sample-Id: rm_deadlock.rm
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavformat/rdt.c')
-rw-r--r-- | libavformat/rdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rdt.c b/libavformat/rdt.c index 304f4cf210..cc30694756 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -132,7 +132,7 @@ static int rdt_load_mdpr (PayloadContext *rdt, AVStream *st, int rule_nr) { AVIOContext pb; - int size; + unsigned int size; uint32_t tag; /** |