[vlc-commits] chain: set the output vctx from the internal filter chain output vctx
Steve Lhomme
git at videolan.org
Mon Dec 9 13:27:07 CET 2019
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Nov 6 09:51:04 2019 +0100| [130d12f8350c4af651c9362fdd0e7ef755e7cfce] | committer: Steve Lhomme
chain: set the output vctx from the internal filter chain output vctx
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=130d12f8350c4af651c9362fdd0e7ef755e7cfce
---
modules/video_chroma/chain.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/video_chroma/chain.c b/modules/video_chroma/chain.c
index 7f975e9fb8..ea8e0e6775 100644
--- a/modules/video_chroma/chain.c
+++ b/modules/video_chroma/chain.c
@@ -209,6 +209,7 @@ static int Activate( filter_t *p_filter, int (*pf_build)(filter_t *) )
es_format_Clean( &p_filter->fmt_out );
es_format_Copy( &p_filter->fmt_out,
filter_chain_GetFmtOut( p_sys->p_chain ) );
+ p_filter->vctx_out = filter_chain_GetVideoCtxOut( p_sys->p_chain );
}
assert(p_filter->vctx_out == filter_chain_GetVideoCtxOut( p_sys->p_chain ));
/* */
More information about the vlc-commits
mailing list