[FFmpeg-cvslog] mov: export orphan tmcd track metadata to global format metadata.
Clément Bœsch
git at videolan.org
Mon Jun 11 07:41:51 CEST 2012
ffmpeg | branch: master | Clément Bœsch <clement.boesch at smartjog.com> | Mon Jun 4 12:06:23 2012 +0200| [20e46aafbd27e2bcd51fb5310757ee920e258634] | committer: Clément Bœsch
mov: export orphan tmcd track metadata to global format metadata.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=20e46aafbd27e2bcd51fb5310757ee920e258634
---
libavformat/mov.c | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 3ac1230..5eeb357 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -2872,6 +2872,42 @@ static int mov_read_close(AVFormatContext *s)
return 0;
}
+static int tmcd_is_referenced(AVFormatContext *s, int tmcd_id)
+{
+ int i, j;
+
+ for (i = 0; i < s->nb_streams; i++) {
+ AVStream *st = s->streams[i];
+ MOVStreamContext *sc = st->priv_data;
+
+ if (s->streams[i]->codec->codec_type != AVMEDIA_TYPE_VIDEO)
+ continue;
+ for (j = 0; j < sc->trefs_count; j++)
+ if (tmcd_id == sc->trefs[j])
+ return 1;
+ }
+ return 0;
+}
+
+/* look for a tmcd track not referenced by any video track, and export it globally */
+static void export_orphan_timecode(AVFormatContext *s)
+{
+ int i;
+
+ for (i = 0; i < s->nb_streams; i++) {
+ AVStream *st = s->streams[i];
+
+ if (st->codec->codec_tag == MKTAG('t','m','c','d') &&
+ !tmcd_is_referenced(s, i + 1)) {
+ AVDictionaryEntry *tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
+ if (tcr) {
+ av_dict_set(&s->metadata, "timecode", tcr->value, 0);
+ break;
+ }
+ }
+ }
+}
+
static int mov_read_header(AVFormatContext *s)
{
MOVContext *mov = s->priv_data;
@@ -2922,6 +2958,7 @@ static int mov_read_header(AVFormatContext *s)
av_dict_set(&st->metadata, "timecode", tcr->value, 0);
}
}
+ export_orphan_timecode(s);
if (mov->trex_data) {
for (i = 0; i < s->nb_streams; i++) {
More information about the ffmpeg-cvslog
mailing list