This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Applied EXT-X-KEY for each media segment in the writer. (#37)
* Applied EXT-X-KEY for each media segment in the writer. * Prevented writing unnecessary duplicate EXT-X-KEY tags.
- Loading branch information
1 parent
00d62f1
commit bd0de8b
Showing
4 changed files
with
59 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
package com.iheartradio.m3u8; | ||
|
||
import java.io.IOException; | ||
|
||
import com.iheartradio.m3u8.data.Playlist; | ||
|
||
interface IExtTagWriter { | ||
interface IExtTagWriter extends SectionWriter { | ||
String getTag(); | ||
|
||
void write(TagWriter tagWriter, Playlist playlist) throws IOException, ParseException; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.iheartradio.m3u8; | ||
|
||
import com.iheartradio.m3u8.data.Playlist; | ||
|
||
import java.io.IOException; | ||
|
||
interface SectionWriter { | ||
void write(TagWriter tagWriter, Playlist playlist) throws IOException, ParseException; | ||
} |