aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-02-08 08:27:26 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-02-08 08:27:26 +0000
commit8e2fd8e1d424f3dda8b1966733a32c3842008896 (patch)
treed74f6902e7fb46134dd140744b5f25af9e557a1d /libavformat
parent88a2896520f667461e7e9ef089d17954fe4ff1d2 (diff)
downloadffmpeg-8e2fd8e1d424f3dda8b1966733a32c3842008896.tar.gz
Replace the calls to the deprecated av_alloc_format_context() with
corresponding calls to avformat_alloc_context(). Originally committed as revision 17048 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c2
-rw-r--r--libavformat/utils.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index a26ae43036..d4308fc008 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 5859305370..4f098d9344 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) {