diff options
author | Martin Storsjö <martin@martin.st> | 2011-02-04 12:04:19 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-06 20:31:45 +0100 |
commit | 118f09114cb99cf6805d952fd6a297dc934d9603 (patch) | |
tree | 638fd4be8576fd4fa663d56338971fd86f5ade00 /libavformat | |
parent | 42f97696aec6bab0f11704c4de439e5364522ab6 (diff) | |
download | ffmpeg-118f09114cb99cf6805d952fd6a297dc934d9603.tar.gz |
rtpenc_chain: Don't copy the time_base back to the caller
If required, the caller can do this itself. ff_write_chained rescales
timestamps as necessary, and all current callers of rtpenc_chain
use ff_write_chained, making this timebase copy unnecessary.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit 397ffde115f4e0482a007b672f40457596cebfc4)
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtpenc_chain.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/rtpenc_chain.c b/libavformat/rtpenc_chain.c index e1f200ca08..63918adf49 100644 --- a/libavformat/rtpenc_chain.c +++ b/libavformat/rtpenc_chain.c @@ -70,8 +70,6 @@ AVFormatContext *ff_rtp_chain_mux_open(AVFormatContext *s, AVStream *st, return NULL; } - /* Copy the RTP AVStream timebase back to the original AVStream */ - st->time_base = rtpctx->streams[0]->time_base; return rtpctx; } |