From 0061a582102b1faaf6ae349e1fe7fe947bf403d3 Mon Sep 17 00:00:00 2001 From: Karl Blomster Date: Mon, 14 Jun 2010 20:55:35 +0000 Subject: [PATCH] Fix the ffmpeg configure test so it doesn't try to use a function that has been deprecated for well over a fucking year and a half (since before 0.5, in fact). Originally committed to SVN as r4515. --- aegisub/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/configure.in b/aegisub/configure.in index dc032b5b3..40ad10ccb 100644 --- a/aegisub/configure.in +++ b/aegisub/configure.in @@ -687,7 +687,7 @@ int main (void) { SwsContext *swsc = NULL; av_register_all(); - fc = av_alloc_format_context(); + fc = avformat_alloc_context(); if (fc == NULL) { printf("avformat failure\n"); return 1;