summaryrefslogtreecommitdiff
path: root/libavcodec/ttadsp.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2016-08-06 18:27:01 -0300
committerJames Almer <jamrial@gmail.com>2016-08-06 18:27:01 -0300
commitd950279cbfede7270c6d55d0dd6eed35a962fd86 (patch)
treed6134dc89a19db9ce9abd29344c7c399a2cb16ad /libavcodec/ttadsp.c
parent803c058a6f0c835c3094621d03d6e8c02565f28e (diff)
avcodec/ttadsp: cosmetics
Clean some header includes and use the same naming scheme as in ttaencdsp Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/ttadsp.c')
-rw-r--r--libavcodec/ttadsp.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/libavcodec/ttadsp.c b/libavcodec/ttadsp.c
index 30b7ab9eb7..056a2c7ef1 100644
--- a/libavcodec/ttadsp.c
+++ b/libavcodec/ttadsp.c
@@ -16,11 +16,13 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include "libavutil/attributes.h"
#include "ttadsp.h"
+#include "config.h"
-static void ttafilter_process_dec_c(int32_t *qm, int32_t *dx, int32_t *dl,
- int32_t *error, int32_t *in, int32_t shift,
- int32_t round) {
+static void tta_filter_process_c(int32_t *qm, int32_t *dx, int32_t *dl,
+ int32_t *error, int32_t *in, int32_t shift,
+ int32_t round) {
if (*error < 0) {
qm[0] -= dx[0]; qm[1] -= dx[1]; qm[2] -= dx[2]; qm[3] -= dx[3];
qm[4] -= dx[4]; qm[5] -= dx[5]; qm[6] -= dx[6]; qm[7] -= dx[7];
@@ -29,8 +31,8 @@ static void ttafilter_process_dec_c(int32_t *qm, int32_t *dx, int32_t *dl,
qm[4] += dx[4]; qm[5] += dx[5]; qm[6] += dx[6]; qm[7] += dx[7];
}
- round += dl[0] * qm[0] + dl[1] * qm[1] + dl[2] * qm[2] + dl[3] * qm[3] +
- dl[4] * qm[4] + dl[5] * qm[5] + dl[6] * qm[6] + dl[7] * qm[7];
+ round += dl[0] * qm[0] + dl[1] * qm[1] + dl[2] * qm[2] + dl[3] * qm[3] +
+ dl[4] * qm[4] + dl[5] * qm[5] + dl[6] * qm[6] + dl[7] * qm[7];
dx[0] = dx[1]; dx[1] = dx[2]; dx[2] = dx[3]; dx[3] = dx[4];
dl[0] = dl[1]; dl[1] = dl[2]; dl[2] = dl[3]; dl[3] = dl[4];
@@ -50,7 +52,7 @@ static void ttafilter_process_dec_c(int32_t *qm, int32_t *dx, int32_t *dl,
av_cold void ff_ttadsp_init(TTADSPContext *c)
{
- c->ttafilter_process_dec = ttafilter_process_dec_c;
+ c->filter_process = tta_filter_process_c;
if (ARCH_X86)
ff_ttadsp_init_x86(c);