diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-31 12:37:01 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-31 12:53:46 +0200 |
commit | 8c895ae73f81a5db66f3bfeac3d91da5c4e179e2 (patch) | |
tree | 91232c2e193df19a9bb1a22657f3e3e07cb610df /libavformat/rtpenc_chain.c | |
parent | 4ba8560077a19ae12bf0c875c57cdaa72d690441 (diff) | |
parent | f797b134cad4d248b1c8955659997980d0668bc3 (diff) | |
download | ffmpeg-8c895ae73f81a5db66f3bfeac3d91da5c4e179e2.tar.gz |
Merge commit 'f797b134cad4d248b1c8955659997980d0668bc3'
* commit 'f797b134cad4d248b1c8955659997980d0668bc3':
rtpenc_chain: Don't copy the time base to the source stream by default
See: 1fe40e1b0538a8eb8425123c47775b5d141ae084
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtpenc_chain.c')
-rw-r--r-- | libavformat/rtpenc_chain.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/rtpenc_chain.c b/libavformat/rtpenc_chain.c index 794bd47fb8..dea1f70dac 100644 --- a/libavformat/rtpenc_chain.c +++ b/libavformat/rtpenc_chain.c @@ -98,9 +98,6 @@ int ff_rtp_chain_mux_open(AVFormatContext **out, AVFormatContext *s, return ret; } - /* Copy the RTP AVStream timebase back to the original AVStream */ - st->time_base = rtpctx->streams[0]->time_base; - *out = rtpctx; return 0; |