mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-26 13:48:21 +01:00
move decode_vp8.h from webp/ to dec/
the functions contained in it are now private Change-Id: Ief6c81b32ae3f6d97052edac625716e5b909e66e
This commit is contained in:
parent
8d3b04a25d
commit
d5e5ad6356
@ -140,6 +140,7 @@ HDRS_INSTALLED = \
|
|||||||
src/webp/types.h \
|
src/webp/types.h \
|
||||||
|
|
||||||
HDRS = \
|
HDRS = \
|
||||||
|
src/dec/decode_vp8.h \
|
||||||
src/dec/vp8i.h \
|
src/dec/vp8i.h \
|
||||||
src/dec/vp8li.h \
|
src/dec/vp8li.h \
|
||||||
src/dec/webpi.h \
|
src/dec/webpi.h \
|
||||||
@ -157,7 +158,6 @@ HDRS = \
|
|||||||
src/utils/quant_levels.h \
|
src/utils/quant_levels.h \
|
||||||
src/utils/rescaler.h \
|
src/utils/rescaler.h \
|
||||||
src/utils/thread.h \
|
src/utils/thread.h \
|
||||||
src/webp/decode_vp8.h \
|
|
||||||
src/webp/format_constants.h \
|
src/webp/format_constants.h \
|
||||||
src/webp/mux.h \
|
src/webp/mux.h \
|
||||||
$(HDRS_INSTALLED) \
|
$(HDRS_INSTALLED) \
|
||||||
|
@ -12,7 +12,6 @@ libwebpinclude_HEADERS += webp/decode.h
|
|||||||
libwebpinclude_HEADERS += webp/encode.h
|
libwebpinclude_HEADERS += webp/encode.h
|
||||||
libwebpinclude_HEADERS += webp/types.h
|
libwebpinclude_HEADERS += webp/types.h
|
||||||
noinst_HEADERS =
|
noinst_HEADERS =
|
||||||
noinst_HEADERS += webp/decode_vp8.h
|
|
||||||
noinst_HEADERS += webp/format_constants.h
|
noinst_HEADERS += webp/format_constants.h
|
||||||
|
|
||||||
libwebp_la_LIBADD =
|
libwebp_la_LIBADD =
|
||||||
|
@ -4,6 +4,7 @@ noinst_LTLIBRARIES = libwebpdecode.la
|
|||||||
libwebpdecode_la_SOURCES =
|
libwebpdecode_la_SOURCES =
|
||||||
libwebpdecode_la_SOURCES += alpha.c
|
libwebpdecode_la_SOURCES += alpha.c
|
||||||
libwebpdecode_la_SOURCES += buffer.c
|
libwebpdecode_la_SOURCES += buffer.c
|
||||||
|
libwebpdecode_la_SOURCES += decode_vp8.h
|
||||||
libwebpdecode_la_SOURCES += frame.c
|
libwebpdecode_la_SOURCES += frame.c
|
||||||
libwebpdecode_la_SOURCES += idec.c
|
libwebpdecode_la_SOURCES += idec.c
|
||||||
libwebpdecode_la_SOURCES += io.c
|
libwebpdecode_la_SOURCES += io.c
|
||||||
@ -21,7 +22,6 @@ libwebpdecodeinclude_HEADERS =
|
|||||||
libwebpdecodeinclude_HEADERS += ../webp/decode.h
|
libwebpdecodeinclude_HEADERS += ../webp/decode.h
|
||||||
libwebpdecodeinclude_HEADERS += ../webp/types.h
|
libwebpdecodeinclude_HEADERS += ../webp/types.h
|
||||||
noinst_HEADERS =
|
noinst_HEADERS =
|
||||||
noinst_HEADERS += ../webp/decode_vp8.h
|
|
||||||
noinst_HEADERS += ../webp/format_constants.h
|
noinst_HEADERS += ../webp/format_constants.h
|
||||||
|
|
||||||
libwebpdecode_la_CPPFLAGS = $(USE_EXPERIMENTAL_CODE)
|
libwebpdecode_la_CPPFLAGS = $(USE_EXPERIMENTAL_CODE)
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#ifndef WEBP_WEBP_DECODE_VP8_H_
|
#ifndef WEBP_WEBP_DECODE_VP8_H_
|
||||||
#define WEBP_WEBP_DECODE_VP8_H_
|
#define WEBP_WEBP_DECODE_VP8_H_
|
||||||
|
|
||||||
#include "./decode.h"
|
#include "../webp/decode.h"
|
||||||
|
|
||||||
#if defined(__cplusplus) || defined(c_plusplus)
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
extern "C" {
|
extern "C" {
|
@ -17,7 +17,7 @@ extern "C" {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "../utils/rescaler.h"
|
#include "../utils/rescaler.h"
|
||||||
#include "../webp/decode_vp8.h"
|
#include "./decode_vp8.h"
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// WebPDecParams: Decoding output parameters. Transient internal object.
|
// WebPDecParams: Decoding output parameters. Transient internal object.
|
||||||
|
@ -18,8 +18,8 @@ libwebpdsp_la_SOURCES += yuv.h
|
|||||||
|
|
||||||
libwebpdspinclude_HEADERS = ../webp/types.h
|
libwebpdspinclude_HEADERS = ../webp/types.h
|
||||||
noinst_HEADERS =
|
noinst_HEADERS =
|
||||||
|
noinst_HEADERS += ../dec/decode_vp8.h
|
||||||
noinst_HEADERS += ../webp/decode.h
|
noinst_HEADERS += ../webp/decode.h
|
||||||
noinst_HEADERS += ../webp/decode_vp8.h
|
|
||||||
|
|
||||||
libwebpdsp_la_LDFLAGS = -lm
|
libwebpdsp_la_LDFLAGS = -lm
|
||||||
libwebpdsp_la_CPPFLAGS = $(USE_EXPERIMENTAL_CODE)
|
libwebpdsp_la_CPPFLAGS = $(USE_EXPERIMENTAL_CODE)
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#ifndef WEBP_DSP_YUV_H_
|
#ifndef WEBP_DSP_YUV_H_
|
||||||
#define WEBP_DSP_YUV_H_
|
#define WEBP_DSP_YUV_H_
|
||||||
|
|
||||||
#include "../webp/decode_vp8.h"
|
#include "../dec/decode_vp8.h"
|
||||||
|
|
||||||
#if defined(__cplusplus) || defined(c_plusplus)
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
Loading…
Reference in New Issue
Block a user