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:
authorClément Bœsch <cboesch@gopro.com>2017-01-31 13:20:54 +0300
committerClément Bœsch <cboesch@gopro.com>2017-01-31 17:31:34 +0300
commitd0e132bab68073588dc55844a31b053fb0ee1c83 (patch)
tree1c3b3cd8bee776019f2960cfca1d561019cb84d4 /libavcodec/hevcdsp.h
parentc778a9657dc8a425ac65f89d81d64709f2090a9f (diff)
parent1bd890ad173d79e7906c5e1d06bf0a06cca4519d (diff)
Merge commit '1bd890ad173d79e7906c5e1d06bf0a06cca4519d'
* commit '1bd890ad173d79e7906c5e1d06bf0a06cca4519d': hevc: Separate adding residual to prediction from IDCT This commit should be a noop but isn't because of the following renames: - transform_add → add_residual - transform_skip → dequant - idct_4x4_luma → transform_4x4_luma Merged-by: Clément Bœsch <cboesch@gopro.com>
Diffstat (limited to 'libavcodec/hevcdsp.h')
-rw-r--r--libavcodec/hevcdsp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/hevcdsp.h b/libavcodec/hevcdsp.h
index 9f1f6dd59f..3b7e737f31 100644
--- a/libavcodec/hevcdsp.h
+++ b/libavcodec/hevcdsp.h
@@ -46,13 +46,13 @@ typedef struct HEVCDSPContext {
void (*put_pcm)(uint8_t *_dst, ptrdiff_t _stride, int width, int height,
struct GetBitContext *gb, int pcm_bit_depth);
- void (*transform_add[4])(uint8_t *_dst, int16_t *coeffs, ptrdiff_t _stride);
+ void (*add_residual[4])(uint8_t *_dst, int16_t *coeffs, ptrdiff_t _stride);
- void (*transform_skip)(int16_t *coeffs, int16_t log2_size);
+ void (*dequant)(int16_t *coeffs, int16_t log2_size);
void (*transform_rdpcm)(int16_t *coeffs, int16_t log2_size, int mode);
- void (*idct_4x4_luma)(int16_t *coeffs);
+ void (*transform_4x4_luma)(int16_t *coeffs);
void (*idct[4])(int16_t *coeffs, int col_limit);