mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat/mxfdec: replace obsolete comment
We no longer use strftime directly but use av_timegm to get an int64_t timestamp. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
6c7eb0708e
commit
d0e43cf1a8
@ -2563,9 +2563,7 @@ static int64_t mxf_timestamp_to_int64(uint64_t timestamp)
|
||||
time.tm_min = (timestamp >> 16 & 0xFF);
|
||||
time.tm_sec = (timestamp >> 8 & 0xFF);
|
||||
|
||||
/* msvcrt versions of strftime calls the invalid parameter handler
|
||||
* (aborting the process if one isn't set) if the parameters are out
|
||||
* of range. */
|
||||
/* Clip values for legacy reasons. Maybe we should return error instead? */
|
||||
time.tm_mon = av_clip(time.tm_mon, 0, 11);
|
||||
time.tm_mday = av_clip(time.tm_mday, 1, 31);
|
||||
time.tm_hour = av_clip(time.tm_hour, 0, 23);
|
||||
|
Loading…
Reference in New Issue
Block a user