mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
rtpdec_xiph: fix function return type
parse_packed_headers() returns either zero or a negative error code so its return type must be signed. Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
366484fff1
commit
0a7005bebd
@ -243,7 +243,7 @@ static int get_base128(const uint8_t ** buf, const uint8_t * buf_end)
|
||||
/**
|
||||
* Based off parse_packed_headers in Vorbis RTP
|
||||
*/
|
||||
static unsigned int
|
||||
static int
|
||||
parse_packed_headers(const uint8_t * packed_headers,
|
||||
const uint8_t * packed_headers_end,
|
||||
AVCodecContext * codec, PayloadContext * xiph_data)
|
||||
|
Loading…
Reference in New Issue
Block a user