summaryrefslogtreecommitdiff
path: root/vp8/common
diff options
context:
space:
mode:
authorTimothy B. Terriberry <tterribe@xiph.org>2012-05-02 10:08:10 -0700
committerTimothy B. Terriberry <tterribe@xiph.org>2012-05-02 10:08:10 -0700
commit28f54515720f9013b6c697b3598d440ab376014d (patch)
tree6784ec4cfb4df879f46fb08d690fb555e8d0c4a6 /vp8/common
parent414b5eaedeb51fc120c43e7bee83f4a813c0ae36 (diff)
downloadlibvpx-28f54515720f9013b6c697b3598d440ab376014d.tar
libvpx-28f54515720f9013b6c697b3598d440ab376014d.tar.gz
libvpx-28f54515720f9013b6c697b3598d440ab376014d.tar.bz2
libvpx-28f54515720f9013b6c697b3598d440ab376014d.zip
Fix trailing commas in enums.
These are warnings in most builds, but show up as compile errors on some platforms when these headers are included from C++ code. Change-Id: I6c523b4dbbc699075fe73830442b51922e5a61d5
Diffstat (limited to 'vp8/common')
-rw-r--r--vp8/common/onyx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp8/common/onyx.h b/vp8/common/onyx.h
index 4c39b49f0..500dff0b0 100644
--- a/vp8/common/onyx.h
+++ b/vp8/common/onyx.h
@@ -60,14 +60,14 @@ extern "C"
MODE_BESTQUALITY = 0x2,
MODE_FIRSTPASS = 0x3,
MODE_SECONDPASS = 0x4,
- MODE_SECONDPASS_BEST = 0x5,
+ MODE_SECONDPASS_BEST = 0x5
} MODE;
typedef enum
{
FRAMEFLAGS_KEY = 1,
FRAMEFLAGS_GOLDEN = 2,
- FRAMEFLAGS_ALTREF = 4,
+ FRAMEFLAGS_ALTREF = 4
} FRAMETYPE_FLAGS;