summaryrefslogtreecommitdiff
path: root/libavformat/rtp.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-07-09 23:40:53 +0000
committerMåns Rullgård <mans@mansr.com>2006-07-09 23:40:53 +0000
commitd2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch)
tree859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/rtp.c
parent21227514de650da3de297acce893175230f04beb (diff)
give AVInput/OutputFormat structs consistent names
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp.c')
-rw-r--r--libavformat/rtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtp.c b/libavformat/rtp.c
index 67ad3efdb0..e294ecdab5 100644
--- a/libavformat/rtp.c
+++ b/libavformat/rtp.c
@@ -860,7 +860,7 @@ static int rtp_write_trailer(AVFormatContext *s1)
return 0;
}
-AVOutputFormat rtp_mux = {
+AVOutputFormat rtp_muxer = {
"rtp",
"RTP output format",
NULL,
@@ -875,6 +875,6 @@ AVOutputFormat rtp_mux = {
int rtp_init(void)
{
- av_register_output_format(&rtp_mux);
+ av_register_output_format(&rtp_muxer);
return 0;
}