summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_vp8.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-12-10 14:38:32 +0200
committerMartin Storsjö <martin@martin.st>2012-12-21 14:14:40 +0200
commit90c784cc13f6bf21a8eb69f3b88b50c7a70f6c59 (patch)
treece93cf089348b7be81dd4af2f38d35efb6be9325 /libavformat/rtpdec_vp8.c
parent0a0e340f5b8d9135540befcfa72dcf06e1a05cee (diff)
rtpdec: Pass the sequence number to depacketizers
This allows depacketizers to figure out if packets have been lost. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtpdec_vp8.c')
-rw-r--r--libavformat/rtpdec_vp8.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/libavformat/rtpdec_vp8.c b/libavformat/rtpdec_vp8.c
index 99ca60a6f7..1259eff509 100644
--- a/libavformat/rtpdec_vp8.c
+++ b/libavformat/rtpdec_vp8.c
@@ -36,13 +36,10 @@ struct PayloadContext {
uint32_t timestamp;
};
-static int vp8_handle_packet(AVFormatContext *ctx,
- PayloadContext *vp8,
- AVStream *st,
- AVPacket *pkt,
- uint32_t *timestamp,
- const uint8_t *buf,
- int len, int flags)
+static int vp8_handle_packet(AVFormatContext *ctx, PayloadContext *vp8,
+ AVStream *st, AVPacket *pkt, uint32_t *timestamp,
+ const uint8_t *buf, int len, uint16_t seq,
+ int flags)
{
int start_partition, end_packet;
int extended_bits, part_id;