diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-09-05 04:41:22 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-07 03:17:28 +0200 |
commit | c9a0f9bf3ce263f1c0941070225e9a5f97b773bc (patch) | |
tree | 12d9184733596793fbe794878418d56171a4375a /libavfilter/video.c | |
parent | de9f5b6853a7c860391df7636dc2bce90afd9a7d (diff) | |
download | ffmpeg-c9a0f9bf3ce263f1c0941070225e9a5f97b773bc.tar.gz |
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/video.c')
-rw-r--r-- | libavfilter/video.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/video.c b/libavfilter/video.c index 9ab8edb12c..14e7e72f41 100644 --- a/libavfilter/video.c +++ b/libavfilter/video.c @@ -55,6 +55,7 @@ AVFilterBufferRef *ff_default_get_video_buffer(AVFilterLink *link, int perms, in AVFilterBuffer *pic = picref->buf; pool->pic[i] = NULL; pool->count--; + av_assert0(!picref->video->qp_table); picref->video->w = w; picref->video->h = h; picref->perms = full_perms; |