mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
672 B

  1. Frank van der Loo (18 Jul 2004)
  2. MPlayer doesn't work with the latest LIVE.COM streaming because
  3. the destructor ~UsageEnvironment() from LIVE.COM is now protected.
  4. Now the public method "reclaim()" has to be used. So, instead of
  5. "delete env", now "env->reclaim()" has to be used in demux_rtp.cpp.
  6. --- ./libmpdemux/demux_rtp.cpp.orig 2004-10-13 10:09:53.000000000 -0300
  7. +++ ./libmpdemux/demux_rtp.cpp 2004-10-13 10:10:27.000000000 -0300
  8. @@ -407,7 +407,7 @@
  9. delete rtpState->sdpDescription;
  10. delete rtpState;
  11. - delete env; delete scheduler;
  12. + env->reclaim(); delete scheduler;
  13. }
  14. ////////// Extra routines that help implement the above interface functions: