summaryrefslogtreecommitdiff
path: root/libavcodec/aacps.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-26 02:18:31 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-26 03:24:13 +0200
commit9f36ec6aa936515a703f6d7ff32826aa28684f1e (patch)
tree3590855d4bf4aa07b5506da0c051de8fbb1f2afc /libavcodec/aacps.c
parent0018aa9013dbe2f6c18f1ced99dc33126efdc791 (diff)
downloadffmpeg-9f36ec6aa936515a703f6d7ff32826aa28684f1e.tar.gz
aacps: fix order of operands of ipdopd_reset().
With the current implementation this is purely cosmetic Fixes CID732285 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/aacps.c')
-rw-r--r--libavcodec/aacps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacps.c b/libavcodec/aacps.c
index c33bd24ebf..c8002e2ae5 100644
--- a/libavcodec/aacps.c
+++ b/libavcodec/aacps.c
@@ -139,7 +139,7 @@ static int ps_read_extension_data(GetBitContext *gb, PSContext *ps, int ps_exten
return get_bits_count(gb) - count;
}
-static void ipdopd_reset(int8_t *opd_hist, int8_t *ipd_hist)
+static void ipdopd_reset(int8_t *ipd_hist, int8_t *opd_hist)
{
int i;
for (i = 0; i < PS_MAX_NR_IPDOPD; i++) {