mkvmuxerutil::EbmlDateElementSize: remove value param

this is unused as the size of dates is fixed:
Date - signed 8 octets integer in nanoseconds with 0 indicating the
precise beginning of the millennium (at 2001-01-01T00:00:00,000000000
UTC)

Change-Id: I7d44c92a6b746e92e4041238b110115b56e38a93
This commit is contained in:
James Zern
2015-05-22 12:28:42 -07:00
parent ff572b5399
commit f99f3b20fb
3 changed files with 3 additions and 3 deletions

View File

@@ -295,7 +295,7 @@ uint64 EbmlElementSize(uint64 type, const uint8* value, uint64 size) {
return ebml_size;
}
uint64 EbmlDateElementSize(uint64 type, int64 value) {
uint64 EbmlDateElementSize(uint64 type) {
// Size of EBML ID
uint64 ebml_size = GetUIntSize(type);