From 35b016948476cf5cfa097052816cb6907f03362e Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Sun, 5 Dec 2010 11:45:57 +0000 Subject: RTP/VP8: Update the warning about the VP8 payload The current implementation is incompatible with the latest spec drafts, this should be communicated clearly to the user. Originally committed as revision 25887 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtpdec_vp8.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavformat/rtpdec_vp8.c') diff --git a/libavformat/rtpdec_vp8.c b/libavformat/rtpdec_vp8.c index 8de89ff152..b18017b205 100644 --- a/libavformat/rtpdec_vp8.c +++ b/libavformat/rtpdec_vp8.c @@ -129,7 +129,8 @@ static int vp8_handle_packet(AVFormatContext *ctx, static PayloadContext *vp8_new_context(void) { - av_log(NULL, AV_LOG_WARNING, "RTP VP8 payload is still experimental\n"); + av_log(NULL, AV_LOG_ERROR, "RTP VP8 payload implementation is incompatible " + "with the latest spec drafts.\n"); return av_mallocz(sizeof(PayloadContext)); } -- cgit v1.2.3