diff --git a/ffmpeg.c b/ffmpeg.c index 42ac417ac804c4bbee6c24139986675b32978967..db0eafd8f0b8309e2d87195bb5baaf8712d69366 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2778,7 +2778,7 @@ static void opt_input_file(const char *filename) !strcmp(filename, "/dev/stdin"); /* get default parameters from command line */ - ic = av_alloc_format_context(); + ic = avformat_alloc_context(); memset(ap, 0, sizeof(*ap)); ap->prealloced_context = 1; @@ -3267,7 +3267,7 @@ static void opt_output_file(const char *filename) if (!strcmp(filename, "-")) filename = "pipe:"; - oc = av_alloc_format_context(); + oc = avformat_alloc_context(); if (!file_oformat) { file_oformat = guess_format(NULL, filename, NULL); @@ -3900,7 +3900,7 @@ int main(int argc, char **argv) for(i=0; i<CODEC_TYPE_NB; i++){ avctx_opts[i]= avcodec_alloc_context2(i); } - avformat_opts = av_alloc_format_context(); + avformat_opts = avformat_alloc_context(); sws_opts = sws_getContext(16,16,0, 16,16,0, sws_flags, NULL,NULL,NULL); show_banner(); diff --git a/ffplay.c b/ffplay.c index 946f4cd614f983ebe7aaa307f7c9c4bc54a65208..3a22c45a466af5deb9a7356113ff5aa5ea98d1e8 100644 --- a/ffplay.c +++ b/ffplay.c @@ -2554,7 +2554,7 @@ int main(int argc, char **argv) for(i=0; i<CODEC_TYPE_NB; i++){ avctx_opts[i]= avcodec_alloc_context2(i); } - avformat_opts = av_alloc_format_context(); + avformat_opts = avformat_alloc_context(); sws_opts = sws_getContext(16,16,0, 16,16,0, sws_flags, NULL,NULL,NULL); show_banner(); diff --git a/ffserver.c b/ffserver.c index 11088601fe7a008658dcfb8a4911bdb74b5887aa..223f1a00a07430e9fb76e6d820b3b69846240664 100644 --- a/ffserver.c +++ b/ffserver.c @@ -2711,7 +2711,7 @@ static int prepare_sdp_description(FFStream *stream, uint8_t **pbuffer, AVStream avs[MAX_STREAMS]; int i; - avc = av_alloc_format_context(); + avc = avformat_alloc_context(); if (avc == NULL) { return -1; } @@ -3154,7 +3154,7 @@ static int rtp_new_av_stream(HTTPContext *c, int max_packet_size; /* now we can open the relevant output stream */ - ctx = av_alloc_format_context(); + ctx = avformat_alloc_context(); if (!ctx) return -1; ctx->oformat = guess_format("rtp", NULL, NULL); diff --git a/libavformat/mov.c b/libavformat/mov.c index a26ae4303617b69a1ffafd12a976854e77c0b821..d4308fc0087f33f156152f4659d002104fe366b5 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1009,7 +1009,7 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOVAtom atom) switch (st->codec->codec_id) { #if CONFIG_DV_DEMUXER case CODEC_ID_DVAUDIO: - c->dv_fctx = av_alloc_format_context(); + c->dv_fctx = avformat_alloc_context(); c->dv_demux = dv_init_demux(c->dv_fctx); if (!c->dv_demux) { av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n"); diff --git a/libavformat/utils.c b/libavformat/utils.c index 5859305370bdcb82145365278e21c2e10a7bb1ac..4f098d9344cba198fe2b60f55307d5e2d32978dd 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -413,7 +413,7 @@ int av_open_input_stream(AVFormatContext **ic_ptr, } if(!ap->prealloced_context) - ic = av_alloc_format_context(); + ic = avformat_alloc_context(); else ic = *ic_ptr; if (!ic) { diff --git a/output_example.c b/output_example.c index bd9b7c3f6ff2ad76ce283770567aba93225ee67f..612146dad0d0a462a03a864c1eee9c78ab59e712 100644 --- a/output_example.c +++ b/output_example.c @@ -453,7 +453,7 @@ int main(int argc, char **argv) } /* allocate the output media context */ - oc = av_alloc_format_context(); + oc = avformat_alloc_context(); if (!oc) { fprintf(stderr, "Memory error\n"); exit(1); diff --git a/tests/seek_test.c b/tests/seek_test.c index 088bbc8302254ffca381ad9e9129e5e577932c4b..b4e0e419e0441b8b71e02caca08db4ff74ac9b68 100644 --- a/tests/seek_test.c +++ b/tests/seek_test.c @@ -50,7 +50,7 @@ int main(int argc, char **argv) filename = argv[1]; /* allocate the media context */ - ic = av_alloc_format_context(); + ic = avformat_alloc_context(); if (!ic) { fprintf(stderr, "Memory error\n"); exit(1);