aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSubash Lakkimsetti2014-03-06 12:32:55 -0600
committerSubash Lakkimsetti2014-03-06 12:32:55 -0600
commitdc2cf63f59aea3180f1b7d4e3f47c047581fac1d (patch)
treed8f0e3e61eb17c1086b042a9cbb79cbead7f99d4 /test_qnx
parent0ab31239d479f6954ba56977cfd358b373b3f9ed (diff)
downloadrepo-libdce-dc2cf63f59aea3180f1b7d4e3f47c047581fac1d.tar.gz
repo-libdce-dc2cf63f59aea3180f1b7d4e3f47c047581fac1d.tar.xz
repo-libdce-dc2cf63f59aea3180f1b7d4e3f47c047581fac1d.zip
[DCE_TEST] Dump output frames per user specified request for NON-TILER
For NON-TILER case, dce_test is currently dumping a maximum of 300 frames. The change is to dump output frames per user specified request on frames to write as done in TILER case Change-Id: I224c9254140c6bc0804aa10b8c9560306fa78534 Signed-off-by: Subash Lakkimsetti <x0091084@ti.com>
Diffstat (limited to 'test_qnx')
-rw-r--r--test_qnx/dce_test/dce_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_qnx/dce_test/dce_test.c b/test_qnx/dce_test/dce_test.c
index a3d8df1..383b4ae 100644
--- a/test_qnx/dce_test/dce_test.c
+++ b/test_qnx/dce_test/dce_test.c
@@ -1404,7 +1404,7 @@ int main(int argc, char * *argv)
1404 buf = (OutputBuffer *)outArgs->outputID[i]; 1404 buf = (OutputBuffer *)outArgs->outputID[i];
1405 DEBUG("pop: %d (%p)", out_cnt, buf); 1405 DEBUG("pop: %d (%p)", out_cnt, buf);
1406 1406
1407 if( out_cnt < 300 ) { // write first 300 frames to output file 1407 if( out_cnt < frames_to_write ) { // write first frames_to_write frames to output file as
1408 write_output(out_pattern, out_cnt++, buf->buf + yoff, 1408 write_output(out_pattern, out_cnt++, buf->buf + yoff,
1409 buf->buf + uvoff, padded_width); 1409 buf->buf + uvoff, padded_width);
1410 } else { 1410 } else {