summaryrefslogtreecommitdiff
path: root/tests
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 /tests
parent88a2896520f667461e7e9ef089d17954fe4ff1d2 (diff)
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 'tests')
-rw-r--r--tests/seek_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/seek_test.c b/tests/seek_test.c
index 088bbc8302..b4e0e419e0 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);