diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-12-17 15:19:40 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-12-18 23:27:14 +0100 |
commit | 16c7a8a142277aa3c98b4802ee57daaebe6999e5 (patch) | |
tree | 33541e4039fda741875b3c50e5bc56ca7ab55c6b /libavcodec | |
parent | 76ccf114a6c107218e2a1948afc1d0fb3ac7ba0b (diff) | |
download | ffmpeg-16c7a8a142277aa3c98b4802ee57daaebe6999e5.tar.gz |
aacps: invert the order of parameters of ipdopd_reset()
This is the order that the caller uses in the rest of the file. The
same operation is applied to both parameters, so this change is only
done for consistency, it doesn't change the actual behaviour.
Bug-Id: CID 732285 / CID 732286
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aacps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacps.c b/libavcodec/aacps.c index 8f55c7f3c0..df069c3e6d 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++) { |