diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-09 23:40:53 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-09 23:40:53 +0000 |
commit | d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch) | |
tree | 859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/rtsp.c | |
parent | 21227514de650da3de297acce893175230f04beb (diff) | |
download | ffmpeg-d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a.tar.gz |
give AVInput/OutputFormat structs consistent names
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index a4bd40f25a..45acadb293 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1245,7 +1245,7 @@ static int rtsp_read_close(AVFormatContext *s) return 0; } -AVInputFormat rtsp_demux = { +AVInputFormat rtsp_demuxer = { "rtsp", "RTSP input format", sizeof(RTSPState), @@ -1346,7 +1346,7 @@ static int sdp_read_close(AVFormatContext *s) } -static AVInputFormat sdp_demux = { +static AVInputFormat sdp_demuxer = { "sdp", "SDP", sizeof(RTSPState), @@ -1410,7 +1410,7 @@ int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f) return 0; } -AVInputFormat redir_demux = { +AVInputFormat redir_demuxer = { "redir", "Redirector format", 0, @@ -1422,8 +1422,8 @@ AVInputFormat redir_demux = { int rtsp_init(void) { - av_register_input_format(&rtsp_demux); - av_register_input_format(&redir_demux); - av_register_input_format(&sdp_demux); + av_register_input_format(&rtsp_demuxer); + av_register_input_format(&redir_demuxer); + av_register_input_format(&sdp_demuxer); return 0; } |