[gegl] ff-save: s/guess_format/av_guess_format/



commit 5f128f8642ff1a98ad1a4c3e664ae253425f55d4
Author: Ãyvind KolÃs <pippin gimp org>
Date:   Mon Mar 26 17:11:12 2012 +0100

    ff-save: s/guess_format/av_guess_format/

 operations/workshop/external/ff-save.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/operations/workshop/external/ff-save.c b/operations/workshop/external/ff-save.c
index d7313d6..66d0a20 100644
--- a/operations/workshop/external/ff-save.c
+++ b/operations/workshop/external/ff-save.c
@@ -738,13 +738,13 @@ tfile (GeglChantO *self)
 {
   Priv *p = (Priv*)self->chant_data;
 
-  p->fmt = guess_format (NULL, self->path, NULL);
+  p->fmt = av_guess_format (NULL, self->path, NULL);
   if (!p->fmt)
     {
       fprintf (stderr,
                "ff_save couldn't deduce outputformat from file extension: using MPEG.\n%s",
                "");
-      p->fmt = guess_format ("mpeg", NULL, NULL);
+      p->fmt = av_guess_format ("mpeg", NULL, NULL);
     }
   p->oc = av_alloc_format_context ();/*g_malloc (sizeof (AVFormatContext));*/
   if (!p->oc)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]