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>2012-04-10 23:10:14 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-04-10 23:18:33 +0400
commitb1ef4dc406e8a0bd9acea40d880aa4e74412075b (patch)
treef27a7122240b7b2b28f6c151f1edbb9c03259aca /libswresample/swresample.h
parent0cff3e130bfe0471d58ca55655a9d2b73a2873f5 (diff)
swr: add triangular dither support
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample.h')
-rw-r--r--libswresample/swresample.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h
index 1f87617d9d..9bd5b6769d 100644
--- a/libswresample/swresample.h
+++ b/libswresample/swresample.h
@@ -48,6 +48,7 @@
enum SwrDitherType {
SWR_DITHER_NONE = 0,
SWR_DITHER_RECTANGULAR,
+ SWR_DITHER_TRIANGULAR,
SWR_DITHER_NB, ///< not part of API/ABI
};