-
Notifications
You must be signed in to change notification settings - Fork 169
Feature/trim #50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/trim #50
Changes from 3 commits
fb9a53d
4c1a3af
6238570
8d8ea93
52583ad
7ddc093
1a70d9e
d596091
a9c4975
8f45d8c
b382f34
421f8af
ed06a2a
82de65e
7dcdc96
5177e6d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.otaliastudios.transcoder.source; | ||
|
||
import android.media.MediaExtractor; | ||
|
||
/** | ||
* DataSource that allows access to its MediaExtractor. | ||
*/ | ||
abstract class MediaExtractorDataSource implements DataSource { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I hope we get rid of this (see comments below) but if we don't, this should be made public because it's in the TrimDataSource constructor. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done, 👍 I added
to the Signature is a bit similar to https://github.com/bcgit/bc-java/blob/master/core/src/main/java/org/bouncycastle/crypto/SkippingCipher.java#L23 |
||
abstract protected MediaExtractor requireExtractor(); | ||
} | ||
natario1 marked this conversation as resolved.
Show resolved
Hide resolved
|
Uh oh!
There was an error while loading. Please reload this page.