[FFmpeg-cvslog] r22205 - trunk/ffmpeg.c

alexc subversion
Thu Mar 4 12:27:39 CET 2010


Author: alexc
Date: Thu Mar  4 12:27:39 2010
New Revision: 22205

Log:
ffmpeg.c: Don't use NULL for integer metadata flags.

Modified:
   trunk/ffmpeg.c

Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c	Thu Mar  4 11:01:03 2010	(r22204)
+++ trunk/ffmpeg.c	Thu Mar  4 12:27:39 2010	(r22205)
@@ -1850,7 +1850,7 @@ static int av_encode(AVFormatContext **o
         while ((t = av_metadata_get(ist->st->metadata, "", t, AV_METADATA_IGNORE_SUFFIX))) {
             if (lang && !strcmp(t->key, "language"))
                 continue;
-            av_metadata_set2(&ost->st->metadata, t->key, t->value, NULL);
+            av_metadata_set2(&ost->st->metadata, t->key, t->value, 0);
         }
 
         ost->st->disposition = ist->st->disposition;



More information about the ffmpeg-cvslog mailing list