diff options
author | Michael Niedermayer | 2014-08-27 23:52:40 +0200 |
---|---|---|
committer | Michael Niedermayer | 2014-08-27 23:52:40 +0200 |
commit | 35debfc366cd3d131e19852b3c1ac21d077dca17 (patch) | |
tree | 353109981c45cbf0b70cc659b921439d5c53e048 /libavformat/rdt.c | |
parent | 7a2c380e93f8ee2469942ffe00e71906fa92375f (diff) |
avformat/rdt: fix compiler warning about const qualifier being discarded
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 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); |