mirror of
https://github.com/samsonjs/media.git
synced 2026-03-27 09:45:47 +00:00
Cleanup regex in MPD parser
This commit is contained in:
parent
98d446aa6d
commit
712756c3e8
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ import java.util.regex.Pattern;
|
|||
public class MediaPresentationDescriptionParser extends DefaultHandler
|
||||
implements UriLoadable.Parser<MediaPresentationDescription> {
|
||||
|
||||
private static final Pattern FRAME_RATE_PATTERN = Pattern.compile("(\\d+)(?:/(\\d+))??");
|
||||
private static final Pattern FRAME_RATE_PATTERN = Pattern.compile("(\\d+)(?:/(\\d+))?");
|
||||
|
||||
private final String contentId;
|
||||
private final XmlPullParserFactory xmlParserFactory;
|
||||
|
|
|
|||
Loading…
Reference in a new issue