mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
give SimpleDecoder's thread a name.
PiperOrigin-RevId: 291401328
This commit is contained in:
parent
accbc5bba5
commit
3fc61de7f7
1 changed files with 7 additions and 6 deletions
|
|
@ -62,7 +62,8 @@ public abstract class SimpleDecoder<
|
||||||
for (int i = 0; i < availableOutputBufferCount; i++) {
|
for (int i = 0; i < availableOutputBufferCount; i++) {
|
||||||
availableOutputBuffers[i] = createOutputBuffer();
|
availableOutputBuffers[i] = createOutputBuffer();
|
||||||
}
|
}
|
||||||
decodeThread = new Thread() {
|
decodeThread =
|
||||||
|
new Thread("SimpleDecoder:Decode") {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
SimpleDecoder.this.run();
|
SimpleDecoder.this.run();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue