Advertisement
Guest User

Untitled

a guest
Nov 29th, 2015
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. diff --git a/src/satip/rtsp.c b/src/satip/rtsp.c
  2. index 88cc3af..0876d17 100644
  3. --- a/src/satip/rtsp.c
  4. +++ b/src/satip/rtsp.c
  5. @@ -487,6 +487,10 @@ rtsp_start
  6. int res = HTTP_STATUS_SERVICE, qsize = 3000000, created = 0;
  7.  
  8. pthread_mutex_lock(&global_lock);
  9. + dvb_mux_conf_str(&rs->dmc, buf, sizeof(buf));
  10. + tvhwarn("satips", "%i/%s/%i: rtsp start mux %s %d %d %d",
  11. + rs->frontend, rs->session, rs->stream, buf,
  12. + newmux, setup, oldstate);
  13. dmc = rs->dmc_tuned;
  14. if (newmux) {
  15. mux = NULL;
  16. @@ -518,6 +522,10 @@ rtsp_start
  17. }
  18. }
  19. }
  20. + if (mux) {
  21. + mpegts_mux_nice_name(mux, buf, sizeof(buf));
  22. + tvhwarn("satips", "found mux: '%s'\n", buf);
  23. + }
  24. if (mux == NULL && mn2 &&
  25. (rtsp_muxcnf == MUXCNF_AUTO || rtsp_muxcnf == MUXCNF_KEEP)) {
  26. dvb_mux_conf_str(&rs->dmc, buf, sizeof(buf));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement