Hi, On Thu, Apr 7, 2011 at 3:16 PM, Anton Khirnov <[email protected]> wrote: > --- > ffserver.c | 6 ++-- > libavformat/applehttp.c | 2 +- > libavformat/applehttpproto.c | 10 +++--- > libavformat/avio.c | 76 > +++++++++++++++++++++--------------------- > libavformat/avio.h | 3 +- > libavformat/avio_internal.h | 7 ++-- > libavformat/aviobuf.c | 12 +++--- > libavformat/concat.c | 14 ++++---- > libavformat/file.c | 15 ++++---- > libavformat/gopher.c | 12 +++--- > libavformat/http.c | 32 +++++++++--------- > libavformat/http.h | 10 +++--- > libavformat/librtmp.c | 15 ++++---- > libavformat/md5proto.c | 10 +++--- > libavformat/mms.h | 4 +- > libavformat/mmsh.c | 6 ++-- > libavformat/mmst.c | 6 ++-- > libavformat/rtmppkt.c | 4 +- > libavformat/rtmppkt.h | 5 ++- > libavformat/rtmpproto.c | 38 ++++++++++---------- > libavformat/rtpdec.c | 4 +- > libavformat/rtpdec.h | 15 ++++---- > libavformat/rtpenc_chain.c | 2 +- > libavformat/rtpenc_chain.h | 3 +- > libavformat/rtpproto.c | 22 ++++++------ > libavformat/rtsp.c | 2 +- > libavformat/rtsp.h | 8 ++-- > libavformat/sapdec.c | 2 +- > libavformat/sapenc.c | 4 +- > libavformat/tcp.c | 10 +++--- > libavformat/udp.c | 14 ++++---- > libavformat/url.h | 45 ++++++++++++++++--------- > 32 files changed, 219 insertions(+), 199 deletions(-) > > diff --git a/ffserver.c b/ffserver.c > index 021b2e5..f4ea029 100644 > --- a/ffserver.c > +++ b/ffserver.c > @@ -174,7 +174,7 @@ typedef struct HTTPContext { > AVFormatContext *rtp_ctx[MAX_STREAMS]; > > /* RTP/UDP specific */ > - URLContext *rtp_handles[MAX_STREAMS]; > + FFURLContext *rtp_handles[MAX_STREAMS];
There isn't actually any reason to rename these. Their names aren't exposed in our API. Internal structures (as opposed to functions, which are non-static and thus exposed) are hidden (like static functions, basically) and their name is thus free-form. Ronald _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
