[FFmpeg-cvslog] r22790 - trunk/libavformat/rtsp.c
mstorsjo
subversion
Sat Apr 3 14:16:33 CEST 2010
Author: mstorsjo
Date: Sat Apr 3 14:16:33 2010
New Revision: 22790
Log:
Remove a redundant assignment, found by clang
Modified:
trunk/libavformat/rtsp.c
Modified: trunk/libavformat/rtsp.c
==============================================================================
--- trunk/libavformat/rtsp.c Sat Apr 3 11:45:46 2010 (r22789)
+++ trunk/libavformat/rtsp.c Sat Apr 3 14:16:33 2010 (r22790)
@@ -1897,8 +1897,6 @@ static int rtsp_read_pause(AVFormatConte
RTSPState *rt = s->priv_data;
RTSPMessageHeader reply1, *reply = &reply1;
- rt = s->priv_data;
-
if (rt->state != RTSP_STATE_STREAMING)
return 0;
else if (!(rt->server_type == RTSP_SERVER_REAL && rt->need_subscription)) {
More information about the ffmpeg-cvslog
mailing list