diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-11-28 16:23:23 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-11-28 18:17:49 +0100 |
commit | 2c4593dd132ee765aaedc553ab5f13ed9afd497b (patch) | |
tree | 5e2bcbabaeacaf7feaa5a3be168e4f754b687d39 | |
parent | ab87d9b6677c5757d467f532e681b056d3e77e6b (diff) | |
download | ffmpeg-2c4593dd132ee765aaedc553ab5f13ed9afd497b.tar.gz |
rtpenc_chain: Remove unused variable
-rw-r--r-- | libavformat/rtpenc_chain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpenc_chain.c b/libavformat/rtpenc_chain.c index adc432aa00..3c297eb97b 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; |