riff: add ISMP/timecode tag.

This commit is contained in:
Clément Bœsch 2012-05-31 09:31:04 +02:00 committed by Clément Bœsch
parent 0478d5f9fe
commit 9846a9c701
3 changed files with 4 additions and 2 deletions

View File

@ -410,7 +410,7 @@ MOV timecode is extracted from tmcd track, so is available in the tmcd
stream metadata (@option{-show_streams}, see @var{TAG:timecode}). stream metadata (@option{-show_streams}, see @var{TAG:timecode}).
@item @item
DV and GXF timecodes are available in format metadata DV, GXF and AVI timecodes are available in format metadata
(@option{-show_format}, see @var{TAG:timecode}). (@option{-show_format}, see @var{TAG:timecode}).
@end itemize @end itemize

View File

@ -890,6 +890,7 @@ performance on systems without hardware floating point support).
@multitable @columnfractions .4 .1 .1 @multitable @columnfractions .4 .1 .1
@item Codec/format @tab Read @tab Write @item Codec/format @tab Read @tab Write
@item AVI @tab X @tab X
@item DV @tab X @tab X @item DV @tab X @tab X
@item GXF @tab X @tab X @item GXF @tab X @tab X
@item MOV @tab X @tab @item MOV @tab X @tab

View File

@ -389,6 +389,7 @@ const AVMetadataConv ff_riff_info_conv[] = {
{ "IPRD", "album" }, { "IPRD", "album" },
{ "IPRT", "track" }, { "IPRT", "track" },
{ "ISFT", "encoder" }, { "ISFT", "encoder" },
{ "ISMP", "timecode" },
{ "ITCH", "encoded_by"}, { "ITCH", "encoded_by"},
{ 0 }, { 0 },
}; };
@ -396,7 +397,7 @@ const AVMetadataConv ff_riff_info_conv[] = {
const char ff_riff_tags[][5] = { const char ff_riff_tags[][5] = {
"IARL", "IART", "ICMS", "ICMT", "ICOP", "ICRD", "ICRP", "IDIM", "IDPI", "IARL", "IART", "ICMS", "ICMT", "ICOP", "ICRD", "ICRP", "IDIM", "IDPI",
"IENG", "IGNR", "IKEY", "ILGT", "ILNG", "IMED", "INAM", "IPLT", "IPRD", "IENG", "IGNR", "IKEY", "ILGT", "ILNG", "IMED", "INAM", "IPLT", "IPRD",
"IPRT", "ISBJ", "ISFT", "ISHP", "ISRC", "ISRF", "ITCH", "IPRT", "ISBJ", "ISFT", "ISHP", "ISMP", "ISRC", "ISRF", "ITCH",
{0} {0}
}; };