当前位置: 首页>>代码示例>>C++>>正文


C++ SrsSource::acquire_publish方法代码示例

本文整理汇总了C++中SrsSource::acquire_publish方法的典型用法代码示例。如果您正苦于以下问题:C++ SrsSource::acquire_publish方法的具体用法?C++ SrsSource::acquire_publish怎么用?C++ SrsSource::acquire_publish使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SrsSource的用法示例。


在下文中一共展示了SrsSource::acquire_publish方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: stream_service_cycle


//.........这里部分代码省略.........
    srs_trace("source url=%s, ip=%s, cache=%d, is_edge=%d, source_id=%d[%d]",
              req->get_stream_url().c_str(), ip.c_str(), enabled_cache, vhost_is_edge,
              source->source_id(), source->source_id());
    source->set_cache(enabled_cache);

    switch (type) {
    case SrsRtmpConnPlay: {
        srs_verbose("start to play stream %s.", req->stream.c_str());

        if (vhost_is_edge) {
            // notice edge to start for the first client.
            if ((ret = source->on_edge_start_play()) != ERROR_SUCCESS) {
                srs_error("notice edge start play stream failed. ret=%d", ret);
                return ret;
            }
        }

        // response connection start play
        if ((ret = rtmp->start_play(res->stream_id)) != ERROR_SUCCESS) {
            srs_error("start to play stream failed. ret=%d", ret);
            return ret;
        }
        if ((ret = http_hooks_on_play()) != ERROR_SUCCESS) {
            srs_error("http hook on_play failed. ret=%d", ret);
            return ret;
        }

        srs_info("start to play stream %s success", req->stream.c_str());
        ret = playing(source);
        http_hooks_on_stop();

        return ret;
    }
    case SrsRtmpConnFMLEPublish: {
        srs_verbose("FMLE start to publish stream %s.", req->stream.c_str());

        if (vhost_is_edge) {
            if ((ret = source->on_edge_start_publish()) != ERROR_SUCCESS) {
                srs_error("notice edge start publish stream failed. ret=%d", ret);
                return ret;
            }
        }

        if ((ret = rtmp->start_fmle_publish(res->stream_id)) != ERROR_SUCCESS) {
            srs_error("start to publish stream failed. ret=%d", ret);
            return ret;
        }

        if (!vhost_is_edge) {
            if ((ret = source->acquire_publish()) != ERROR_SUCCESS) {
                return ret;
            }
        }

        ret = fmle_publishing(source);

        if (!vhost_is_edge) {
            source->release_publish();
        }

        return ret;
    }
    case SrsRtmpConnFlashPublish: {
        srs_verbose("flash start to publish stream %s.", req->stream.c_str());

        if (vhost_is_edge) {
            if ((ret = source->on_edge_start_publish()) != ERROR_SUCCESS) {
                srs_error("notice edge start publish stream failed. ret=%d", ret);
                return ret;
            }
        }

        if ((ret = rtmp->start_flash_publish(res->stream_id)) != ERROR_SUCCESS) {
            srs_error("flash start to publish stream failed. ret=%d", ret);
            return ret;
        }

        if (!vhost_is_edge) {
            if ((ret = source->acquire_publish()) != ERROR_SUCCESS) {
                return ret;
            }
        }

        ret = flash_publishing(source);

        if (!vhost_is_edge) {
            source->release_publish();
        }

        return ret;
    }
    default: {
        ret = ERROR_SYSTEM_CLIENT_INVALID;
        srs_info("invalid client type=%d. ret=%d", type, ret);
        return ret;
    }
    }

    return ret;
}
开发者ID:WilliamRen,项目名称:simple-rtmp-server,代码行数:101,代码来源:srs_app_rtmp_conn.cpp


注:本文中的SrsSource::acquire_publish方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。