Merge "move nestegg to third_party"

This commit is contained in:
James Zern 2014-02-22 11:43:37 -08:00 committed by Gerrit Code Review
commit 8e3ef6c0e1
21 changed files with 21 additions and 21 deletions

View File

@ -26,13 +26,13 @@ vpxdec.SRCS += ivfdec.c ivfdec.h
vpxdec.SRCS += tools_common.c tools_common.h
vpxdec.SRCS += webmdec.c webmdec.h
vpxdec.SRCS += y4menc.c y4menc.h
vpxdec.SRCS += nestegg/halloc/halloc.h
vpxdec.SRCS += nestegg/halloc/src/align.h
vpxdec.SRCS += nestegg/halloc/src/halloc.c
vpxdec.SRCS += nestegg/halloc/src/hlist.h
vpxdec.SRCS += nestegg/halloc/src/macros.h
vpxdec.SRCS += nestegg/include/nestegg/nestegg.h
vpxdec.SRCS += nestegg/src/nestegg.c
vpxdec.SRCS += third_party/nestegg/halloc/halloc.h
vpxdec.SRCS += third_party/nestegg/halloc/src/align.h
vpxdec.SRCS += third_party/nestegg/halloc/src/halloc.c
vpxdec.SRCS += third_party/nestegg/halloc/src/hlist.h
vpxdec.SRCS += third_party/nestegg/halloc/src/macros.h
vpxdec.SRCS += third_party/nestegg/include/nestegg/nestegg.h
vpxdec.SRCS += third_party/nestegg/src/nestegg.c
vpxdec.SRCS += $(LIBYUV_SRCS)
vpxdec.GUID = BA5FE66F-38DD-E034-F542-B1578C5FB950
vpxdec.DESCRIPTION = Full featured decoder

View File

@ -39,12 +39,12 @@ LIBVPX_TEST_SRCS-$(CONFIG_DECODERS) += ivf_video_source.h
LIBVPX_TEST_SRCS-$(CONFIG_VP9_DECODER) += external_frame_buffer_test.cc
## WebM Parsing
NESTEGG_SRCS += ../nestegg/halloc/halloc.h
NESTEGG_SRCS += ../nestegg/halloc/src/align.h
NESTEGG_SRCS += ../nestegg/halloc/src/halloc.c
NESTEGG_SRCS += ../nestegg/halloc/src/hlist.h
NESTEGG_SRCS += ../nestegg/include/nestegg/nestegg.h
NESTEGG_SRCS += ../nestegg/src/nestegg.c
NESTEGG_SRCS += ../third_party/nestegg/halloc/halloc.h
NESTEGG_SRCS += ../third_party/nestegg/halloc/src/align.h
NESTEGG_SRCS += ../third_party/nestegg/halloc/src/halloc.c
NESTEGG_SRCS += ../third_party/nestegg/halloc/src/hlist.h
NESTEGG_SRCS += ../third_party/nestegg/include/nestegg/nestegg.h
NESTEGG_SRCS += ../third_party/nestegg/src/nestegg.c
LIBVPX_TEST_SRCS-$(CONFIG_DECODERS) += $(NESTEGG_SRCS)
LIBVPX_TEST_SRCS-$(CONFIG_DECODERS) += webm_video_source.h

View File

@ -14,7 +14,7 @@
#include <cstdlib>
#include <new>
#include <string>
#include "nestegg/include/nestegg/nestegg.h"
#include "third_party/nestegg/include/nestegg/nestegg.h"
#include "test/video_source.h"
namespace libvpx_test {

View File

@ -7,7 +7,7 @@ index 5758fc0..837b3ff 100644
#include <string.h> /* memset & co */
-#include "halloc.h"
+#include "nestegg/halloc/halloc.h"
+#include "third_party/nestegg/halloc/halloc.h"
#include "align.h"
#include "hlist.h"
@ -34,8 +34,8 @@ index daf1eed..4fb10e7 100644
-#include "halloc.h"
-#include "nestegg/nestegg.h"
+#include "nestegg/halloc/halloc.h"
+#include "nestegg/include/nestegg/nestegg.h"
+#include "third_party/nestegg/halloc/halloc.h"
+#include "third_party/nestegg/include/nestegg/nestegg.h"
/* EBML Elements */
#define ID_EBML 0x1a45dfa3

View File

@ -15,7 +15,7 @@
#include <stdlib.h> /* realloc */
#include <string.h> /* memset & co */
#include "nestegg/halloc/halloc.h"
#include "third_party/nestegg/halloc/halloc.h"
#include "align.h"
#include "hlist.h"

View File

@ -8,8 +8,8 @@
#include <stdlib.h>
#include <string.h>
#include "nestegg/halloc/halloc.h"
#include "nestegg/include/nestegg/nestegg.h"
#include "third_party/nestegg/halloc/halloc.h"
#include "third_party/nestegg/include/nestegg/nestegg.h"
/* EBML Elements */
#define ID_EBML 0x1a45dfa3

View File

@ -12,7 +12,7 @@
#include <stdarg.h>
#include "nestegg/include/nestegg/nestegg.h"
#include "third_party/nestegg/include/nestegg/nestegg.h"
static int nestegg_read_cb(void *buffer, size_t length, void *userdata) {
FILE *f = userdata;