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:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-16 21:10:56 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-24 01:01:27 +0300
commit6b2c1d10185592442988ec5332ac57eb48dea4b6 (patch)
tree694ae66b9b68ab829a6be2a2c7b6b4b405188b21 /libavfilter/vf_elbg.c
parent6afad4c7e9b9abd785d2b769cbcba3eee4714d48 (diff)
avcodec/elbg: Add flags to avpriv_elbg_do()
This is currently unused and it is only added to enable changes while maintaining ABI compatibility. The type is uintptr_t in order to potentially accept a pointer argument. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_elbg.c')
-rw-r--r--libavfilter/vf_elbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_elbg.c b/libavfilter/vf_elbg.c
index fac3b6f7fe..0bebcdbda5 100644
--- a/libavfilter/vf_elbg.c
+++ b/libavfilter/vf_elbg.c
@@ -167,7 +167,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
ret = avpriv_elbg_do(&elbg->ctx, elbg->codeword, NB_COMPONENTS,
elbg->codeword_length, elbg->codebook,
elbg->codebook_length, elbg->max_steps_nb,
- elbg->codeword_closest_codebook_idxs, &elbg->lfg);
+ elbg->codeword_closest_codebook_idxs, &elbg->lfg, 0);
if (ret < 0) {
av_frame_free(&frame);
return ret;