From d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sun, 9 Jul 2006 23:40:53 +0000 Subject: give AVInput/OutputFormat structs consistent names Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffserver.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ffserver.c') diff --git a/ffserver.c b/ffserver.c index cb44f61586..a8a78a7be6 100644 --- a/ffserver.c +++ b/ffserver.c @@ -1624,7 +1624,7 @@ static void compute_stats(HTTPContext *c) strcpy(eosf - 4, ".asx"); } else if (strcmp(eosf - 3, ".rm") == 0) { strcpy(eosf - 3, ".ram"); - } else if (stream->fmt == &rtp_mux) { + } else if (stream->fmt == &rtp_muxer) { /* generate a sample RTSP director if unicast. Generate an SDP redirector if multicast */ @@ -2720,7 +2720,7 @@ static void rtsp_cmd_describe(HTTPContext *c, const char *url) path++; for(stream = first_stream; stream != NULL; stream = stream->next) { - if (!stream->is_feed && stream->fmt == &rtp_mux && + if (!stream->is_feed && stream->fmt == &rtp_muxer && !strcmp(path, stream->filename)) { goto found; } @@ -2795,7 +2795,7 @@ static void rtsp_cmd_setup(HTTPContext *c, const char *url, /* now check each stream */ for(stream = first_stream; stream != NULL; stream = stream->next) { - if (!stream->is_feed && stream->fmt == &rtp_mux) { + if (!stream->is_feed && stream->fmt == &rtp_muxer) { /* accept aggregate filenames only if single stream */ if (!strcmp(path, stream->filename)) { if (stream->nb_streams != 1) { @@ -3130,7 +3130,7 @@ static int rtp_new_av_stream(HTTPContext *c, ctx = av_alloc_format_context(); if (!ctx) return -1; - ctx->oformat = &rtp_mux; + ctx->oformat = &rtp_muxer; st = av_mallocz(sizeof(AVStream)); if (!st) @@ -3350,7 +3350,7 @@ static void build_file_streams(void) /* try to open the file */ /* open stream */ stream->ap_in = av_mallocz(sizeof(AVFormatParameters)); - if (stream->fmt == &rtp_mux) { + if (stream->fmt == &rtp_muxer) { /* specific case : if transport stream output to RTP, we use a raw transport stream reader */ stream->ap_in->mpeg2ts_raw = 1; -- cgit v1.2.3