summaryrefslogtreecommitdiff
path: root/libavformat/rtpenc_chain.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-11-29 14:16:46 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-11-29 14:16:46 +0100
commit9f8e2e92ae88841709ae1ffe71572ef7e5e865c7 (patch)
treed7343c8a8eee0a42ae4c6bcc0ee6105ebacaa3d9 /libavformat/rtpenc_chain.c
parent52066bdb300b3a2cdef48897d0c864410b259084 (diff)
parente4d349b4014ee2a03f521027e0bd1ace4a9e60bd (diff)
Merge commit 'e4d349b4014ee2a03f521027e0bd1ace4a9e60bd'
* commit 'e4d349b4014ee2a03f521027e0bd1ace4a9e60bd': fate: h264: Add dependencies fate: ea: Add dependencies fate: Do not unconditionally run libavutil tests rtpenc_chain: Remove unused variable nuv: check for malloc failure when allocating extradata nuv: use the stream indices generated by avformat_new_stream() Conflicts: tests/fate/ea.mak Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtpenc_chain.c')
-rw-r--r--libavformat/rtpenc_chain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpenc_chain.c b/libavformat/rtpenc_chain.c
index 25b0b8b333..df7410d0c8 100644
--- a/libavformat/rtpenc_chain.c
+++ b/libavformat/rtpenc_chain.c
@@ -31,7 +31,7 @@ int ff_rtp_chain_mux_open(AVFormatContext **out, AVFormatContext *s,
int idx)
{
AVFormatContext *rtpctx = NULL;
- int ret, pt;
+ int ret;
AVOutputFormat *rtp_format = av_guess_format("rtp", NULL, NULL);
uint8_t *rtpflags;
AVDictionary *opts = NULL;