Initialize eof flag from BufferInfo
Stop encoding if the codec signaled the end of stream. The eof flag was read, but never written.
This commit is contained in:
parent
221a7d0826
commit
b61310a257
1 changed files with 1 additions and 0 deletions
|
@ -89,6 +89,7 @@ public class ScreenEncoder implements Device.RotationListener {
|
||||||
MediaCodec.BufferInfo bufferInfo = new MediaCodec.BufferInfo();
|
MediaCodec.BufferInfo bufferInfo = new MediaCodec.BufferInfo();
|
||||||
while (!checkRotationChanged() && !eof) {
|
while (!checkRotationChanged() && !eof) {
|
||||||
int outputBufferId = codec.dequeueOutputBuffer(bufferInfo, -1);
|
int outputBufferId = codec.dequeueOutputBuffer(bufferInfo, -1);
|
||||||
|
eof = (bufferInfo.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0;
|
||||||
try {
|
try {
|
||||||
if (checkRotationChanged()) {
|
if (checkRotationChanged()) {
|
||||||
// must restart encoding with new size
|
// must restart encoding with new size
|
||||||
|
|
Loading…
Reference in a new issue