[SCM] libgroove/upstream: update to libav 10.1

andrewrk-guest at users.alioth.debian.org andrewrk-guest at users.alioth.debian.org
Sat Apr 19 22:37:15 UTC 2014


The following commit has been merged in the upstream branch:
commit fdcf074191146775b03965035d0bfbdd57343f9b
Author: Andrew Kelley <superjoe30 at gmail.com>
Date:   Tue Apr 15 13:18:41 2014 -0700

    update to libav 10.1

diff --git a/deps/libav/RELEASE b/deps/libav/RELEASE
index f599e28..ae425d6 100644
--- a/deps/libav/RELEASE
+++ b/deps/libav/RELEASE
@@ -1 +1 @@
-10
+10.1
diff --git a/deps/libav/libavcodec/golomb.h b/deps/libav/libavcodec/golomb.h
index ce3500f..1754706 100644
--- a/deps/libav/libavcodec/golomb.h
+++ b/deps/libav/libavcodec/golomb.h
@@ -211,9 +211,9 @@ static inline int get_se_golomb_long(GetBitContext *gb)
     unsigned int buf = get_ue_golomb_long(gb);
 
     if (buf & 1)
-        buf = -(buf >> 1);
+        buf = (buf + 1) >> 1;
     else
-        buf = (buf >> 1);
+        buf = -(buf >> 1);
 
     return buf;
 }

-- 
libgroove packaging



More information about the pkg-multimedia-commits mailing list