[FFmpeg-cvslog] r25408 - in trunk/libavformat: rtsp.c rtsp.h

mstorsjo subversion
Fri Oct 8 10:50:29 CEST 2010


Author: mstorsjo
Date: Fri Oct  8 10:50:29 2010
New Revision: 25408

Log:
rtsp: Remove the start_time field from RTSPState, use AVFormatContext->start_time_realtime instead

Modified:
   trunk/libavformat/rtsp.c
   trunk/libavformat/rtsp.h

Modified: trunk/libavformat/rtsp.c
==============================================================================
--- trunk/libavformat/rtsp.c	Fri Oct  8 10:49:56 2010	(r25407)
+++ trunk/libavformat/rtsp.c	Fri Oct  8 10:50:29 2010	(r25408)
@@ -505,7 +505,6 @@ void ff_rtsp_close_streams(AVFormatConte
 static void *rtsp_rtp_mux_open(AVFormatContext *s, AVStream *st,
                                URLContext *handle)
 {
-    RTSPState *rt = s->priv_data;
     AVFormatContext *rtpctx;
     int ret;
     AVOutputFormat *rtp_format = av_guess_format("rtp", NULL, NULL);
@@ -529,7 +528,7 @@ static void *rtsp_rtp_mux_open(AVFormatC
     rtpctx->streams[0]->sample_aspect_ratio = st->sample_aspect_ratio;
 
     /* Set the synchronized start time. */
-    rtpctx->start_time_realtime = rt->start_time;
+    rtpctx->start_time_realtime = s->start_time_realtime;
 
     /* Remove the local codec, link to the original codec
      * context instead, to give the rtp muxer access to
@@ -1333,7 +1332,7 @@ static int rtsp_setup_output_streams(AVF
     char *sdp;
     AVFormatContext sdp_ctx, *ctx_array[1];
 
-    rt->start_time = av_gettime();
+    s->start_time_realtime = av_gettime();
 
     /* Announce the stream */
     sdp = av_mallocz(SDP_MAX_SIZE);

Modified: trunk/libavformat/rtsp.h
==============================================================================
--- trunk/libavformat/rtsp.h	Fri Oct  8 10:49:56 2010	(r25407)
+++ trunk/libavformat/rtsp.h	Fri Oct  8 10:50:29 2010	(r25408)
@@ -295,9 +295,6 @@ typedef struct RTSPState {
      * other cases, this is a copy of AVFormatContext->filename. */
     char control_uri[1024];
 
-    /** The synchronized start time of the output streams. */
-    int64_t start_time;
-
     /** Additional output handle, used when input and output are done
      * separately, eg for HTTP tunneling. */
     URLContext *rtsp_hd_out;



More information about the ffmpeg-cvslog mailing list