On Thu, 11 Oct 2012, Diego Biurrun wrote:

---
Now w/o accidentally renaming the copy in libavutil...

libavcodec/asvdec.c     |    7 ++++---
libavcodec/asvenc.c     |    7 ++++---
libavcodec/bitstream.c  |    9 +++++----
libavcodec/indeo2.c     |    6 ++++--
libavcodec/ivi_common.c |    7 ++++---
libavcodec/mathops.h    |    1 +
libavcodec/mathtables.c |   19 +++++++++++++++++++
libavcodec/pcm.c        |   11 ++++++-----
libavcodec/s302m.c      |   39 ++++++++++++++++++++-------------------
libavcodec/tiff.c       |    7 ++++---
libavcodec/vble.c       |    3 ++-
libavcodec/wnv1.c       |    6 +++---
libavcodec/xbmenc.c     |    4 ++--
libavutil/common.h      |    4 ++++
libavutil/mathematics.c |    4 ++++
libavutil/version.h     |    3 +++
16 files changed, 89 insertions(+), 48 deletions(-)

diff --git a/libavutil/mathematics.c b/libavutil/mathematics.c
index 1655e1c..36839ab 100644
--- a/libavutil/mathematics.c
+++ b/libavutil/mathematics.c
@@ -26,8 +26,11 @@
#include <assert.h>
#include <stdint.h>
#include <limits.h>
+
#include "mathematics.h"
+#include "version.h"

+#ifndef FF_API_AV_REVERSE
const uint8_t av_reverse[256]={
0x00,0x80,0x40,0xC0,0x20,0xA0,0x60,0xE0,0x10,0x90,0x50,0xD0,0x30,0xB0,0x70,0xF0,
0x08,0x88,0x48,0xC8,0x28,0xA8,0x68,0xE8,0x18,0x98,0x58,0xD8,0x38,0xB8,0x78,0xF8,

This should be #if FF_API_AV_REVERSE (sorry for not noticing in the previous round), LGTM with that fixed.

// Martin
_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to