summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-09-05 04:41:22 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-07 03:17:28 +0200
commitc9a0f9bf3ce263f1c0941070225e9a5f97b773bc (patch)
tree12d9184733596793fbe794878418d56171a4375a /libavfilter/avfilter.h
parentde9f5b6853a7c860391df7636dc2bce90afd9a7d (diff)
libavfilter: pass QP table through the filter chain
Any volunteers to port the pp and spp filters from libmpcodec? Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index c0575ce1d1..2e61ac5c02 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -131,6 +131,8 @@ typedef struct AVFilterBufferRefVideoProps {
int top_field_first; ///< field order
enum AVPictureType pict_type; ///< picture type of the frame
int key_frame; ///< 1 -> keyframe, 0-> not
+ int qp_table_linesize; ///< qp_table stride
+ int8_t *qp_table; ///< array of Quantization Parameters
} AVFilterBufferRefVideoProps;
/**