如何覆盖自定义接收器的 updateSegmentRequestInfo?

How to override updateSegmentRequestInfo for custom receiver?

我不明白它是如何工作的 context.The 我曾经覆盖的函数没有被调用。而是使用默认值。 有人可以举例说明如何正确覆盖 updateSegmentRequestInfo().

var host = new cast.player.api.Host({'mediaElement':mediaElement, 'url':url});
host.updateSegmentRequestInfo = function(requestInfo) {
  // example of setting CORS withCredentials
  requestInfo.withCredentials = true;
  // example of setting headers
  requestInfo.headers = {};
  requestInfo.headers['content-type'] = 'text/xml;charset=utf-8';
};