[SCM] libav/experimental: RTP/VP8: Update the warning about the VP8 payload

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:19:42 UTC 2013


The following commit has been merged in the experimental branch:
commit 35b016948476cf5cfa097052816cb6907f03362e
Author: Martin Storsjö <martin at martin.st>
Date:   Sun Dec 5 11:45:57 2010 +0000

    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

diff --git a/libavformat/rtpdec_vp8.c b/libavformat/rtpdec_vp8.c
index 8de89ff..b18017b 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));
 }
 
diff --git a/libavformat/rtpenc.c b/libavformat/rtpenc.c
index 0a2959d..d5f0b38 100644
--- a/libavformat/rtpenc.c
+++ b/libavformat/rtpenc.c
@@ -147,7 +147,8 @@ static int rtp_write_header(AVFormatContext *s1)
         s->num_frames = 0;
         goto defaultcase;
     case CODEC_ID_VP8:
-        av_log(s1, AV_LOG_WARNING, "RTP VP8 payload is still experimental\n");
+        av_log(s1, AV_LOG_ERROR, "RTP VP8 payload implementation is "
+                                 "incompatible with the latest spec drafts.\n");
         break;
     case CODEC_ID_ADPCM_G722:
         /* Due to a historical error, the clock rate for G722 in RTP is

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list