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>2017-02-21 04:18:16 +0300
committerjsorg71 <jay.sorg@gmail.com>2017-02-26 12:24:52 +0300
commit243012840f10255fa272006357a85c9b99cd9232 (patch)
treedf71e5182b23d70100230cbcb76d7233e6ca4c44
parentc10255e72c58f6b291eb9ce41016ff4ab166cbc9 (diff)
coding style change
-rw-r--r--src/rfxencode_diff_rlgr1.c4
-rw-r--r--src/rfxencode_diff_rlgr1.h2
-rw-r--r--src/rfxencode_diff_rlgr3.c4
-rw-r--r--src/rfxencode_diff_rlgr3.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/rfxencode_diff_rlgr1.c b/src/rfxencode_diff_rlgr1.c
index 3548f78..cbceea7 100644
--- a/src/rfxencode_diff_rlgr1.c
+++ b/src/rfxencode_diff_rlgr1.c
@@ -100,7 +100,7 @@
} while (0)
int
-rfx_encode_diff_rlgr1(sint16* coef, uint8* cdata, int cdata_size)
+rfx_encode_diff_rlgr1(sint16 *coef, uint8 *cdata, int cdata_size)
{
int k;
int kp;
@@ -118,7 +118,7 @@ rfx_encode_diff_rlgr1(sint16* coef, uint8* cdata, int cdata_size)
int bit_count;
unsigned int bits;
- uint8* cdata_org;
+ uint8 *cdata_org;
uint32 twoMs;
diff --git a/src/rfxencode_diff_rlgr1.h b/src/rfxencode_diff_rlgr1.h
index 5ff40ce..796f8f2 100644
--- a/src/rfxencode_diff_rlgr1.h
+++ b/src/rfxencode_diff_rlgr1.h
@@ -23,7 +23,7 @@
#include "rfxcommon.h"
int
-rfx_encode_diff_rlgr1(sint16* coef, uint8* cdata, int cdata_size);
+rfx_encode_diff_rlgr1(sint16 *coef, uint8 *cdata, int cdata_size);
#endif /* __RFX_DIFF_RLGR1_H */
diff --git a/src/rfxencode_diff_rlgr3.c b/src/rfxencode_diff_rlgr3.c
index cdbb8f7..da4bdc5 100644
--- a/src/rfxencode_diff_rlgr3.c
+++ b/src/rfxencode_diff_rlgr3.c
@@ -100,7 +100,7 @@
} while (0)
int
-rfx_encode_diff_rlgr3(sint16* coef, uint8* cdata, int cdata_size)
+rfx_encode_diff_rlgr3(sint16 *coef, uint8 *cdata, int cdata_size)
{
int k;
int kp;
@@ -118,7 +118,7 @@ rfx_encode_diff_rlgr3(sint16* coef, uint8* cdata, int cdata_size)
int bit_count;
unsigned int bits;
- uint8* cdata_org;
+ uint8 *cdata_org;
uint32 twoMs1;
uint32 twoMs2;
diff --git a/src/rfxencode_diff_rlgr3.h b/src/rfxencode_diff_rlgr3.h
index d7c6f93..dd61309 100644
--- a/src/rfxencode_diff_rlgr3.h
+++ b/src/rfxencode_diff_rlgr3.h
@@ -23,7 +23,7 @@
#include "rfxcommon.h"
int
-rfx_encode_diff_rlgr3(sint16* coef, uint8* cdata, int cdata_size);
+rfx_encode_diff_rlgr3(sint16 *coef, uint8 *cdata, int cdata_size);
#endif /* __RFX_DIFF_RLGR3_H */