summaryrefslogtreecommitdiff
path: root/libavcodec/adpcm.h
diff options
context:
space:
mode:
authorZane van Iperen <zane@zanevaniperen.com>2020-07-29 22:58:52 +1000
committerZane van Iperen <zane@zanevaniperen.com>2020-08-07 23:04:25 +1000
commit5d1e1dd6bd1b21d6ccce13eb1cf691d3dfc0710d (patch)
treef265965153532795352983c8d74588ad801866c6 /libavcodec/adpcm.h
parentb0b87f28c34502aa8b0feae2294966760428e3ab (diff)
avcodec/adpcm_argo: add ff_adpcm_argo_expand_nibble() and cleanup parameters
Replaces adpcm_argo_expand_nibble(). Preparation for the encoder. Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
Diffstat (limited to 'libavcodec/adpcm.h')
-rw-r--r--libavcodec/adpcm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/adpcm.h b/libavcodec/adpcm.h
index 580db7df8b..dc0d49ac61 100644
--- a/libavcodec/adpcm.h
+++ b/libavcodec/adpcm.h
@@ -45,4 +45,6 @@ typedef struct ADPCMChannelStatus {
int idelta;
} ADPCMChannelStatus;
+int16_t ff_adpcm_argo_expand_nibble(ADPCMChannelStatus *cs, int nibble, int shift, int flag);
+
#endif /* AVCODEC_ADPCM_H */