Skip to content

Commit

Permalink
move buffer-helper to utils (is generic, non-hls.js specific)
Browse files Browse the repository at this point in the history
  • Loading branch information
tchakabam committed Apr 26, 2018
1 parent ec78e24 commit 4cb33d0
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/controller/abr-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import Event from '../events';
import EventHandler from '../event-handler';
import { BufferHelper } from './buffer-helper';
import { BufferHelper } from '../utils/buffer-helper';
import { ErrorDetails } from '../errors';
import { logger } from '../utils/logger';
import EwmaBandWidthEstimator from '../utils/ewma-bandwidth-estimator';
Expand Down
2 changes: 1 addition & 1 deletion src/controller/audio-stream-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/

import BinarySearch from '../utils/binary-search';
import { BufferHelper } from './buffer-helper';
import { BufferHelper } from '../utils/buffer-helper';
import Demuxer from '../demux/demuxer';
import Event from '../events';
import * as LevelHelper from './level-helper';
Expand Down
2 changes: 1 addition & 1 deletion src/controller/stream-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/

import BinarySearch from '../utils/binary-search';
import { BufferHelper } from './buffer-helper';
import { BufferHelper } from '../utils/buffer-helper';
import Demuxer from '../demux/demuxer';
import Event from '../events';
import { FragmentState } from './fragment-tracker';
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 4cb33d0

Please sign in to comment.