aboutsummaryrefslogtreecommitdiff
path: root/src/main/extractor_metatypes.c
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2012-08-20 06:55:11 +0000
committerLRN <lrn1986@gmail.com>2012-08-20 06:55:11 +0000
commitdcd11a972978dc4b13d36ab3dfebeff2b29da361 (patch)
treeb84e4e018e840ef30c8e3947d2761aaff54240c1 /src/main/extractor_metatypes.c
parent936a85ffbd5a81011f6d7f5d3e4c30e12eac8757 (diff)
downloadlibextractor-dcd11a972978dc4b13d36ab3dfebeff2b29da361.tar.gz
libextractor-dcd11a972978dc4b13d36ab3dfebeff2b29da361.zip
More GStreamer fixes
Correct stream tree walking. Better duration handling (new metadata types). Send unknown tags as key=value paris. GStreamer flv test.
Diffstat (limited to 'src/main/extractor_metatypes.c')
-rw-r--r--src/main/extractor_metatypes.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/extractor_metatypes.c b/src/main/extractor_metatypes.c
index 979e210..571ab06 100644
--- a/src/main/extractor_metatypes.c
+++ b/src/main/extractor_metatypes.c
@@ -541,6 +541,13 @@ static const struct MetaTypeDescription meta_type_descriptions[] = {
541 { gettext_noop ("table of contents"), 541 { gettext_noop ("table of contents"),
542 gettext_noop ("chapters, contents or bookmarks (in xml format)") }, 542 gettext_noop ("chapters, contents or bookmarks (in xml format)") },
543 /* 225 */ 543 /* 225 */
544 { gettext_noop ("video duration"),
545 gettext_noop ("duration of a video stream") },
546 { gettext_noop ("audio duration"),
547 gettext_noop ("duration of an audio stream") },
548 { gettext_noop ("subtitle duration"),
549 gettext_noop ("duration of a subtitle stream") },
550
544 { gettext_noop ("last"), 551 { gettext_noop ("last"),
545 gettext_noop ("last") } 552 gettext_noop ("last") }
546}; 553};