[vlc-commits] ci_filters: fix pointer used for src converter
Steve Lhomme
git at videolan.org
Thu Oct 15 12:05:14 CEST 2020
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Thu Oct 15 08:18:17 2020 +0200| [00be9cb4e6df9fd6f2484da9aac0e7c16e9a485d] | committer: Steve Lhomme
ci_filters: fix pointer used for src converter
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=00be9cb4e6df9fd6f2484da9aac0e7c16e9a485d
---
modules/video_filter/ci_filters.m | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/video_filter/ci_filters.m b/modules/video_filter/ci_filters.m
index 162937b6bd..e712ad6ac3 100644
--- a/modules/video_filter/ci_filters.m
+++ b/modules/video_filter/ci_filters.m
@@ -377,7 +377,7 @@ Filter(filter_t *filter, picture_t *src)
if (ctx->src_converter)
{
// TODO
- src = ctx->dst_converter->ops->filter_video(ctx->src_converter, src);
+ src = ctx->src_converter->ops->filter_video(ctx->src_converter, src);
if (!src)
return NULL;
}
More information about the vlc-commits
mailing list