7436e467 by David LaPalomento

Merge pull request #201 from videojs/file-headers

Remove incorrect file headers.
2 parents 8124eef2 3d769bf7
1 /*
2 * aac-stream
3 *
4 *
5 * Copyright (c) 2013 Brightcove
6 * All rights reserved.
7 */
8
9 (function(window) { 1 (function(window) {
10 var 2 var
11 FlvTag = window.videojs.Hls.FlvTag, 3 FlvTag = window.videojs.Hls.FlvTag,
......
1 /* 1 /*
2 * videojs-hls
3 *
4 * Copyright (c) 2014 Brightcove
5 * All rights reserved.
6 * 2 *
7 * This file contains an adaptation of the AES decryption algorithm 3 * This file contains an adaptation of the AES decryption algorithm
8 * from the Standford Javascript Cryptography Library. That work is 4 * from the Standford Javascript Cryptography Library. That work is
......
1 /*
2 * h264-stream
3 *
4 *
5 * Copyright (c) 2013 Brightcove
6 * All rights reserved.
7 */
8
9 (function(window) { 1 (function(window) {
10 var 2 var
11 ExpGolomb = window.videojs.Hls.ExpGolomb, 3 ExpGolomb = window.videojs.Hls.ExpGolomb,
......
1 /* 1 /*
2 * videojs-hls 2 * videojs-hls
3 * 3 * The main file for the HLS project.
4 * Copyright (c) 2014 Brightcove 4 * License: https://github.com/videojs/videojs-contrib-hls/blob/master/LICENSE
5 * All rights reserved.
6 */ 5 */
7
8 (function(window, videojs, document, undefined) { 6 (function(window, videojs, document, undefined) {
9 'use strict'; 7 'use strict';
10 8
......