am 7aa9eddb: am 758a9e8f: libmix: fix out of order decode issue on FUGU
* commit '7aa9eddb7c98edb197a7e63f48f579d4dbbe342c':
libmix: fix out of order decode issue on FUGU
diff --git a/videodecoder/VideoDecoderBase.cpp b/videodecoder/VideoDecoderBase.cpp
index 74670e8..291441f 100644
--- a/videodecoder/VideoDecoderBase.cpp
+++ b/videodecoder/VideoDecoderBase.cpp
@@ -294,9 +294,6 @@
return &(outputByPos->renderBuffer);
}
- // output by presentation time stamp (the smallest pts)
- VideoSurfaceBuffer *outputByPts = findOutputByPts();
-
VideoSurfaceBuffer *output = NULL;
if (mOutputMethod == OUTPUT_BY_POC) {
output = findOutputByPoc(draining);
@@ -311,13 +308,6 @@
return NULL;
}
- if (output != outputByPts) {
- // swap time stamp
- uint64_t ts = output->renderBuffer.timeStamp;
- output->renderBuffer.timeStamp = outputByPts->renderBuffer.timeStamp;
- outputByPts->renderBuffer.timeStamp = ts;
- }
-
if (output != outputByPos) {
// remove this output from middle or end of the list
VideoSurfaceBuffer *p = outputByPos;