Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-04-20 05:33:06 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-04-20 05:33:06 +0300
commitd8b4e9adbb93211b511e3864d8230789186ef4ed (patch)
tree91a10cfd1479528e30f68808ac5b099de2c9262c /libavcodec/hqxdsp.h
parent73e6af9d7b56f12d8676ff919f4acc6c9991d985 (diff)
parentea031b75fb50c59196ccb654c9d143fb75365da9 (diff)
Merge commit 'ea031b75fb50c59196ccb654c9d143fb75365da9'
* commit 'ea031b75fb50c59196ccb654c9d143fb75365da9': hqx: Move DSP related code to a separate file Conflicts: libavcodec/hqx.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hqxdsp.h')
-rw-r--r--libavcodec/hqxdsp.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/libavcodec/hqxdsp.h b/libavcodec/hqxdsp.h
new file mode 100644
index 0000000000..5cbf7b39b6
--- /dev/null
+++ b/libavcodec/hqxdsp.h
@@ -0,0 +1,39 @@
+/*
+ * HQX DSP routines
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+/**
+ * @file
+ * HQX DSP routines
+ */
+
+#ifndef AVCODEC_HQXDSP_H
+#define AVCODEC_HQXDSP_H
+
+#include <stdint.h>
+
+typedef struct HQXDSPContext {
+ void (*idct_put)(uint16_t *dst, ptrdiff_t stride,
+ int16_t *block, const uint8_t *quant);
+} HQXDSPContext;
+
+void ff_hqxdsp_init(HQXDSPContext *c);
+
+#endif /* AVCODEC_HQXDSP_H */
+