Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(719)

Unified Diff: patched-ffmpeg-mt/libavformat/nut.c

Issue 789004: ffmpeg roll of source to mar 9 version... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: patched-ffmpeg-mt/libavformat/nut.c
===================================================================
--- patched-ffmpeg-mt/libavformat/nut.c (revision 41250)
+++ patched-ffmpeg-mt/libavformat/nut.c (working copy)
@@ -69,6 +69,17 @@
}
}
+static void enu_free(void *opaque, void *elem)
+{
+ av_free(elem);
+}
+
+void ff_nut_free_sp(NUTContext *nut)
+{
+ av_tree_enumerate(nut->syncpoints, NULL, NULL, enu_free);
+ av_tree_destroy(nut->syncpoints);
+}
+
const Dispositions ff_nut_dispositions[] = {
{"default" , AV_DISPOSITION_DEFAULT},
{"dub" , AV_DISPOSITION_DUB},
@@ -79,3 +90,16 @@
{"" , 0}
};
+const AVMetadataConv ff_nut_metadata_conv[] = {
+ { "Author", "artist" },
+ { "X-CreationTime", "date" },
+ { "CreationTime", "date" },
+ { "SourceFilename", "filename" },
+ { "X-Language", "language" },
+ { "X-Disposition", "disposition" },
+ { "X-Replaces", "replaces" },
+ { "X-Depends", "depends" },
+ { "X-Uses", "uses" },
+ { "X-UsesFont", "usesfont" },
+ { 0 },
+};

Powered by Google App Engine
This is Rietveld 408576698