mirror of
https://github.com/webmproject/libwebp.git
synced 2025-01-16 01:28:24 +01:00
34 lines
831 B
C
34 lines
831 B
C
|
// Copyright 2012 Google Inc. All Rights Reserved.
|
||
|
//
|
||
|
// This code is licensed under the same terms as WebM:
|
||
|
// Software License Agreement: http://www.webmproject.org/license/software/
|
||
|
// Additional IP Rights Grant: http://www.webmproject.org/license/additional/
|
||
|
// -----------------------------------------------------------------------------
|
||
|
//
|
||
|
// WebP container demux.
|
||
|
//
|
||
|
|
||
|
#include "../webp/mux.h"
|
||
|
|
||
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
WebPDemuxer* WebPDemuxInternal(
|
||
|
const WebPData* const data, int allow_partial,
|
||
|
WebPDemuxState* const state, int version) {
|
||
|
(void)data;
|
||
|
(void)allow_partial;
|
||
|
(void)state;
|
||
|
(void)version;
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
void WebPDemuxDelete(WebPDemuxer* const dmux) {
|
||
|
(void)dmux;
|
||
|
}
|
||
|
|
||
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||
|
} // extern "C"
|
||
|
#endif
|