问题 I want to add Compressor, Avi Muxer, and File Writer to my graph, at runtime. I`ve added an InfTee to my graph like this: IBaseFilter sourceTee = (IBaseFilter)new InfTee(); graphBuilder.AddFilter(sourceTee, "Infinite Tee"); outPin = DsFindPin.ByDirection(theVideoDevice, PinDirection.Output, 0); inPin = DsFindPin.ByDirection(sourceTee, PinDirection.Input, 0); hr = graphBuilder.Connect(outPin, inPin); But when I try to get output on a button click like the below code, I get an error. private