You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
123456789101112131415 |
- #include "hls-parser.h"
-
- int64_t hls_playlist_duration(const struct hls_playlist_t* playlist)
- {
- size_t i;
- double duration;
-
- duration = 0.0;
- for (i = 0; i < playlist->count; i++)
- {
- duration += playlist->segments[i].duration;
- }
-
- return (int64_t)(duration * 1000);
- }
|