Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/librfxcodec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2016-02-12 04:33:26 +0300
committerJay Sorg <jay.sorg@gmail.com>2016-02-12 04:33:26 +0300
commit845ee8ca99a306fe0124d725a5d8738ff69cb411 (patch)
treec0b867d1796c02f23a8f29e123c364f09662500d /include
parent96a96fa8a8f18c2cf831497a6291b6735f1a1948 (diff)
change encode function name
Diffstat (limited to 'include')
-rw-r--r--include/rfxcodec_encode.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/rfxcodec_encode.h b/include/rfxcodec_encode.h
index e41d933..04112b0 100644
--- a/include/rfxcodec_encode.h
+++ b/include/rfxcodec_encode.h
@@ -65,6 +65,12 @@ rfxcodec_encode(void *handle, char *cdata, int *cdata_bytes,
char *buf, int width, int height, int stride_bytes,
const struct rfx_rect *region, int num_region,
const struct rfx_tile *tiles, int num_tiles,
- const char *quants, int num_quants, int flags);
+ const char *quants, int num_quants);
+int
+rfxcodec_encode_ex(void *handle, char *cdata, int *cdata_bytes,
+ char *buf, int width, int height, int stride_bytes,
+ const struct rfx_rect *region, int num_region,
+ const struct rfx_tile *tiles, int num_tiles,
+ const char *quants, int num_quants, int flags);
#endif