File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
datasource/src/main/java/com/google/android/exoplayer2/upstream
decoder/src/main/java/com/google/android/exoplayer2/decoder Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 19
19
import androidx .annotation .IntDef ;
20
20
import androidx .annotation .Nullable ;
21
21
import com .google .android .exoplayer2 .C ;
22
+ import com .google .android .exoplayer2 .ExoPlayerLibraryInfo ;
22
23
import com .google .android .exoplayer2 .util .Assertions ;
23
24
import java .lang .annotation .Documented ;
24
25
import java .lang .annotation .Retention ;
30
31
/** Defines a region of data in a resource. */
31
32
public final class DataSpec {
32
33
34
+ static {
35
+ ExoPlayerLibraryInfo .registerModule ("goog.exo.datasource" );
36
+ }
37
+
33
38
/**
34
39
* Builds {@link DataSpec} instances.
35
40
*
Original file line number Diff line number Diff line change 18
18
import androidx .annotation .IntDef ;
19
19
import androidx .annotation .Nullable ;
20
20
import com .google .android .exoplayer2 .C ;
21
+ import com .google .android .exoplayer2 .ExoPlayerLibraryInfo ;
21
22
import com .google .android .exoplayer2 .Format ;
22
23
import java .lang .annotation .Documented ;
23
24
import java .lang .annotation .Retention ;
28
29
/** Holds input for a decoder. */
29
30
public class DecoderInputBuffer extends Buffer {
30
31
32
+ static {
33
+ ExoPlayerLibraryInfo .registerModule ("goog.exo.decoder" );
34
+ }
35
+
31
36
/**
32
37
* Thrown when an attempt is made to write into a {@link DecoderInputBuffer} whose {@link
33
38
* #bufferReplacementMode} is {@link #BUFFER_REPLACEMENT_MODE_DISABLED} and who {@link #data}
You can’t perform that action at this time.
0 commit comments