From 35debfc366cd3d131e19852b3c1ac21d077dca17 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 27 Aug 2014 23:52:40 +0200 Subject: [PATCH] avformat/rdt: fix compiler warning about const qualifier being discarded Signed-off-by: Michael Niedermayer --- libavformat/rdt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rdt.c b/libavformat/rdt.c index 37fcd7603c..e8dc8f5892 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -301,7 +301,7 @@ rdt_parse_packet (AVFormatContext *ctx, PayloadContext *rdt, AVStream *st, if (rdt->audio_pkt_cnt == 0) { int pos; - ffio_init_context(&pb, buf, len, 0, NULL, NULL, NULL, NULL); + ffio_init_context(&pb, (uint8_t *)buf, len, 0, NULL, NULL, NULL, NULL); flags = (flags & RTP_FLAG_KEY) ? 2 : 0; res = ff_rm_parse_packet (rdt->rmctx, &pb, st, rdt->rmst[st->index], len, pkt, &seq, flags, *timestamp);