Lines Matching defs:avctx
58 setup_crossbar_options(IAMCrossbar *cross_bar, enum dshowDeviceType devtype, AVFormatContext *avctx)
60 struct dshow_ctx *ctx = avctx->priv_data;
69 av_log(avctx, log_level, "Crossbar Switching Information for %s:\n", device_name);
72 av_log(avctx, AV_LOG_ERROR, "Unable to get crossbar pin counts\n");
84 av_log(avctx, log_level, "Routing video input from pin %d\n", video_input_pin);
87 av_log(avctx, AV_LOG_ERROR, "Unable to route video input from pin %d\n", video_input_pin);
93 av_log(avctx, log_level, "Routing audio input from pin %d\n", audio_input_pin);
96 av_log(avctx, AV_LOG_ERROR, "Unable to route audio input from pin %d\n", audio_input_pin);
101 av_log(avctx, AV_LOG_WARNING, "Unexpected output pin type, please report the type if you want to use this (%s)", GetPhysicalPinName(pin_type));
106 av_log(avctx, AV_LOG_ERROR, "Unable to get crossbar is routed to from pin %d\n", i);
109 av_log(avctx, log_level, " Crossbar Output pin %d: \"%s\" related output pin: %ld ", i, GetPhysicalPinName(pin_type), related_pin);
110 av_log(avctx, log_level, "current input pin: %ld ", route_to_pin);
111 av_log(avctx, log_level, "compatible input pins: ");
117 av_log(avctx, log_level ,"%d ", j);
119 av_log(avctx, log_level, "\n");
127 av_log(avctx, AV_LOG_ERROR, "unable to get crossbar info audio input from pin %d\n", i);
130 av_log(avctx, log_level, " Crossbar Input pin %d - \"%s\" ", i, GetPhysicalPinName(pin_type));
131 av_log(avctx, log_level, "related input pin: %ld\n", related_pin);
141 IBaseFilter *device_filter, enum dshowDeviceType devtype, AVFormatContext *avctx)
143 struct dshow_ctx *ctx = avctx->priv_data;
166 ff_dshow_show_filter_properties(cross_bar_base_filter, avctx);
176 ff_dshow_show_filter_properties(tv_tuner_base_filter, avctx);
178 av_log(avctx, AV_LOG_WARNING, "unable to find a tv tuner to display dialog for!");
188 ff_dshow_show_filter_properties(tv_audio_base_filter, avctx);
190 av_log(avctx, AV_LOG_WARNING, "unable to find a tv audio tuner to display dialog for!");
194 hr = setup_crossbar_options(cross_bar, devtype, avctx);