[FFmpeg-cvslog] r16687 - trunk/ffplay.c
aurel
subversion
Mon Jan 19 22:39:08 CET 2009
Author: aurel
Date: Mon Jan 19 22:39:07 2009
New Revision: 16687
Log:
Remove detection of mmsh protocol in ffplay.
This is useless as long as mmsh is not implemented in libavformat.
This is a revert of r10936.
Modified:
trunk/ffplay.c
Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c Mon Jan 19 18:01:22 2009 (r16686)
+++ trunk/ffplay.c Mon Jan 19 22:39:07 2009 (r16687)
@@ -2019,10 +2019,8 @@ static int decode_thread(void *arg)
else
av_read_play(ic);
}
-#if CONFIG_RTSP_DEMUXER || CONFIG_MMSH_PROTOCOL
- if (is->paused &&
- (!strcmp(ic->iformat->name, "rtsp") ||
- (ic->pb && !strcmp(url_fileno(ic->pb)->prot->name, "mmsh")))) {
+#if CONFIG_RTSP_DEMUXER
+ if (is->paused && !strcmp(ic->iformat->name, "rtsp")) {
/* wait 10 ms to avoid trying to get another packet */
/* XXX: horrible */
SDL_Delay(10);
More information about the ffmpeg-cvslog
mailing list