- 23 Jan, 2015 4 commits
-
-
Without this, the byte is cast as follows (in bits) if the top byte is set: 10000010 -> 1000000000000000000000000000010 This works because we then always shift at least one bit left, and only look at the bottom 8 bits of the result. It's confusing though. It's clearer if the cast to int gives just adds zeros to the front, like: 10000010 -> 0000000000000000000000010000010
Oliver Woodman committed -
Fix a signed right shift issue in BitArray.readUnsignedByte()
ojw28 committed -
Make BitArray.readUnsignedByte() a bit more clear by using int value instead of byte to prevent unnecessary convert from int to byte.
Lei YU committed -
Fix an issue in BitArray.readUnsignedByte() returns incorrect value when bitOffset is not zero and data[byteOffset + 1] starts with bit 1. This is caused by signed right shift, the fix is simply to make it unsigned right shift.
Lei YU committed
-
- 22 Jan, 2015 1 commit
-
-
Andrey Udovenko committed
-
- 21 Jan, 2015 7 commits
-
-
dev -> dev-hls
ojw28 committed -
Oliver Woodman committed
-
Oliver Woodman committed
-
FrameworkSampleSource with FileDescriptor
ojw28 committed -
Move Closed Captions processing to Eia608TrackRenderer. Use TextRenderer interface for captions. Sort captions based on video frames DTS. Add better control characters and special characters in basic North American character set support. Fixes #156
Andrey Udovenko committed -
Nezz committed
-
Nezz committed
-
- 12 Jan, 2015 8 commits
-
-
Oliver Woodman committed
-
dev -> dev-hls
ojw28 committed -
Issue: #217 Issue: #228
Oliver Woodman committed -
Oliver Woodman committed
-
Empirical testing in shows increased robustness.
Oliver Woodman committed -
Oliver Woodman committed
-
- Workaround issue where video may freeze whilst audio continues on some devices that have entered bad states. - Fix wrap-around for playbacks lasting more than 27 hours.
Oliver Woodman committed -
Apparently some servers don't like it, and in general it's unnecessary to set the header for this case.
Oliver Woodman committed
-
- 06 Jan, 2015 2 commits
-
-
Refine logic for determining AudioTrack size.
ojw28 committed -
- Target 4x the minimum specified by the framework. - Impose a minimum duration (250ms). - Impose a maximum duration (750ms, or the minimum specified by the framework if that's larger). I've removed the ability to specify the multiplication factor, since the underlying implementation is getting more complicated, and we should really be able to figure this out internally.
Oliver Woodman committed
-
- 02 Jan, 2015 5 commits
-
-
dev -> dev-hls
ojw28 committed -
Oliver Woodman committed
-
log all AudioTrack errors
ojw28 committed -
Martin Bonnin committed
-
- 23 Dec, 2014 4 commits
-
-
Martin Bonnin committed
-
Include gradle plugin 1.0.0
ojw28 committed -
Include gradle plugin 1.0.0
ojw28 committed -
Include gradle plugin 1.0.0
ojw28 committed
-
- 22 Dec, 2014 1 commit
-
-
Sebastian Roth committed
-
- 20 Dec, 2014 4 commits
-
-
dev -> dev-hls
ojw28 committed -
Oliver Woodman committed
-
Oliver Woodman committed
-
Issue: #214
Oliver Woodman committed
-
- 19 Dec, 2014 4 commits
-
-
Previously samples belonging to disabled tracks would just accumulate in an arbitrarily long queue in TsExtractor. We need to actively throw samples away from disabled tracks up to the current playback position, so as to prevent this. Issue: #174
Oliver Woodman committed -
I'm not sure exactly what the implications of this change are, but I'd really hope that only one program in each stream is carrying audio/video. For GoPro cameras, they expose the video stream in the second program, for some reason. Issue: #116
Oliver Woodman committed -
We've seen a few streams where this assertion fails. If you just skip the packet, things appear to recover correctly in all cases I've seen, so replacing failure with a warning.
Oliver Woodman committed -
Oliver Woodman committed
-