diff options
author | Peter Meerwald <pmeerw@pmeerw.net> | 2015-02-15 12:21:22 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-02-15 22:47:14 +0200 |
commit | 10f160768b824f00933f33bc69f1fae89a25dfc8 (patch) | |
tree | bbc297d9795d8d752fad24a72445554f27a6c484 /libavcodec/g722dsp.h | |
parent | 67690683130faf37dd9d969ced15eba2a1940ade (diff) | |
download | ffmpeg-10f160768b824f00933f33bc69f1fae89a25dfc8.tar.gz |
g722: Reduce number of pointers passed to g722_apply_qmf() function
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/g722dsp.h')
-rw-r--r-- | libavcodec/g722dsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g722dsp.h b/libavcodec/g722dsp.h index c0d33390ea..2cc50d9a50 100644 --- a/libavcodec/g722dsp.h +++ b/libavcodec/g722dsp.h @@ -24,7 +24,7 @@ #include <stdint.h> typedef struct G722DSPContext { - void (*apply_qmf)(const int16_t *prev_samples, int *xout1, int *xout2); + void (*apply_qmf)(const int16_t *prev_samples, int xout[2]); } G722DSPContext; void ff_g722dsp_init(G722DSPContext *c); |