Lines Matching refs:playpath

86     char          *playpath;                  ///< stream identifier to play (with possible "mp4:" prefix)
607 0, 29 + strlen(rt->playpath))) < 0)
615 ff_amf_write_string(&p, rt->playpath);
631 0, 25 + strlen(rt->playpath))) < 0)
639 ff_amf_write_string(&p, rt->playpath);
655 0, 27 + strlen(rt->playpath))) < 0)
663 ff_amf_write_string(&p, rt->playpath);
730 0, 31 + strlen(rt->playpath))) < 0)
737 ff_amf_write_string(&p, rt->playpath);
773 av_log(s, AV_LOG_DEBUG, "Sending play command for '%s'\n", rt->playpath);
776 0, 29 + strlen(rt->playpath))) < 0)
785 ff_amf_write_string(&p, rt->playpath);
850 av_log(s, AV_LOG_DEBUG, "Sending publish command for '%s'\n", rt->playpath);
853 0, 30 + strlen(rt->playpath))) < 0)
862 ff_amf_write_string(&p, rt->playpath);
2085 if ((ret = gen_fcsubscribe_stream(s, rt, rt->playpath)) < 0)
2588 * URL syntax: rtmp://server[:port][/app][/playpath]
2591 * and 'playpath' is a file name (the rest of the path,
2701 // After slist we have the playpath, the full path is used as app
2720 // playpath is provided in the URL
2727 // make sure we do not mismatch a playpath for an application instance
2750 if (!rt->playpath) {
2754 rt->playpath = av_malloc(max_len);
2755 if (!rt->playpath) {
2765 memcpy(rt->playpath, "mp4:", 5);
2769 rt->playpath[0] = 0;
2771 av_strlcat(rt->playpath, fname, max_len);
2773 rt->playpath[0] = '\0';
2813 proto, path, rt->app, rt->playpath);
2887 av_freep(&rt->playpath);
3112 {"rtmp_playpath", "Stream identifier to play or to publish", OFFSET(playpath), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},