diff options
author | Vadim Yanitskiy <axilirator@gmail.com> | 2017-06-19 04:59:40 +0700 |
---|---|---|
committer | Vadim Yanitskiy <axilirator@gmail.com> | 2017-06-19 14:35:22 +0000 |
commit | 23d3bc01ea9de48a0ba2a2255fb7e30fc9c632ea (patch) | |
tree | 645f18b68366403af540c487a73bbfe872787e9e /src | |
parent | 46e533c13a0945bf6be0c24dd71a9e4a380811a1 (diff) |
core/conv/conv_acc.c: drop unused structure member
Change-Id: I81f7c35abf424f501ca53d6984c0d56f7936984b
Diffstat (limited to 'src')
-rw-r--r-- | src/conv_acc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/conv_acc.c b/src/conv_acc.c index a3e3f168..c4545d70 100644 --- a/src/conv_acc.c +++ b/src/conv_acc.c @@ -156,7 +156,6 @@ struct vtrellis { * recursive - Set to '1' if the code is recursive * intrvl - Normalization interval * trellis - Trellis object - * punc - Puncturing sequence * paths - Trellis paths */ struct vdecoder { @@ -166,7 +165,6 @@ struct vdecoder { int recursive; int intrvl; struct vtrellis *trellis; - int *punc; int16_t **paths; void (*metric_func)(const int8_t *, const int16_t *, |