documentation normalization
Showing
1 changed file
with
3 additions
and
3 deletions
... | @@ -613,9 +613,9 @@ videojs.Hls.translateMediaIndex = function(mediaIndex, original, update) { | ... | @@ -613,9 +613,9 @@ videojs.Hls.translateMediaIndex = function(mediaIndex, original, update) { |
613 | * objects for each and then returns the most appropriate segment index by | 613 | * objects for each and then returns the most appropriate segment index by |
614 | * checking the time value versus each range. | 614 | * checking the time value versus each range. |
615 | * | 615 | * |
616 | * @param playlist - The playlist of the segments being searched. | 616 | * @param playlist {object} The playlist of the segments being searched. |
617 | * @param time - The time in seconds of what segment you want. | 617 | * @param time {number} The time in seconds of what segment you want. |
618 | * @returns int - The media index, or -1 if none appropriate. | 618 | * @returns {number} The media index, or -1 if none appropriate. |
619 | */ | 619 | */ |
620 | videojs.Hls.getMediaIndexByTime = function(playlist, time) { | 620 | videojs.Hls.getMediaIndexByTime = function(playlist, time) { |
621 | var index, counter, timeRanges, currentSegmentRange; | 621 | var index, counter, timeRanges, currentSegmentRange; | ... | ... |
-
Please register or sign in to post a comment