From 90c784cc13f6bf21a8eb69f3b88b50c7a70f6c59 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Mon, 10 Dec 2012 14:38:32 +0200 Subject: rtpdec: Pass the sequence number to depacketizers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This allows depacketizers to figure out if packets have been lost. Signed-off-by: Martin Storsjö --- libavformat/rtpdec_qdm2.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavformat/rtpdec_qdm2.c') diff --git a/libavformat/rtpdec_qdm2.c b/libavformat/rtpdec_qdm2.c index a2ce510d26..0d7b5bb87a 100644 --- a/libavformat/rtpdec_qdm2.c +++ b/libavformat/rtpdec_qdm2.c @@ -237,7 +237,8 @@ static int qdm2_restore_block(PayloadContext *qdm, AVStream *st, AVPacket *pkt) static int qdm2_parse_packet(AVFormatContext *s, PayloadContext *qdm, AVStream *st, AVPacket *pkt, uint32_t *timestamp, - const uint8_t *buf, int len, int flags) + const uint8_t *buf, int len, uint16_t seq, + int flags) { int res = AVERROR_INVALIDDATA, n; const uint8_t *end = buf + len, *p = buf; -- cgit v1.2.3