[FFmpeg-cvslog] r24462 - trunk/libavcodec/vp8.c

darkshikari subversion
Fri Jul 23 23:17:18 CEST 2010


Author: darkshikari
Date: Fri Jul 23 23:17:18 2010
New Revision: 24462

Log:
VP8: use AV_RL24 instead of defining a new RL24.

Modified:
   trunk/libavcodec/vp8.c

Modified: trunk/libavcodec/vp8.c
==============================================================================
--- trunk/libavcodec/vp8.c	Fri Jul 23 21:06:22 2010	(r24461)
+++ trunk/libavcodec/vp8.c	Fri Jul 23 23:17:18 2010	(r24462)
@@ -198,8 +198,6 @@ typedef struct {
     } prob[2];
 } VP8Context;
 
-#define RL24(p) (AV_RL16(p) + ((p)[2] << 16))
-
 static void vp8_decode_flush(AVCodecContext *avctx)
 {
     VP8Context *s = avctx->priv_data;
@@ -307,7 +305,7 @@ static int setup_partitions(VP8Context *
         return -1;
 
     for (i = 0; i < s->num_coeff_partitions-1; i++) {
-        int size = RL24(sizes + 3*i);
+        int size = AV_RL24(sizes + 3*i);
         if (buf_size - size < 0)
             return -1;
 
@@ -402,7 +400,7 @@ static int decode_frame_header(VP8Contex
     s->keyframe  = !(buf[0] & 1);
     s->profile   =  (buf[0]>>1) & 7;
     s->invisible = !(buf[0] & 0x10);
-    header_size  = RL24(buf) >> 5;
+    header_size  = AV_RL24(buf) >> 5;
     buf      += 3;
     buf_size -= 3;
 
@@ -420,8 +418,8 @@ static int decode_frame_header(VP8Contex
     }
 
     if (s->keyframe) {
-        if (RL24(buf) != 0x2a019d) {
-            av_log(s->avctx, AV_LOG_ERROR, "Invalid start code 0x%x\n", RL24(buf));
+        if (AV_RL24(buf) != 0x2a019d) {
+            av_log(s->avctx, AV_LOG_ERROR, "Invalid start code 0x%x\n", AV_RL24(buf));
             return AVERROR_INVALIDDATA;
         }
         width  = AV_RL16(buf+3) & 0x3fff;



More information about the ffmpeg-cvslog mailing list