OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this |
2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
3 // LICENSE file. | 3 // LICENSE file. |
4 | 4 |
5 // A test program that drives an OpenMAX video decoder module. This program | 5 // A test program that drives an OpenMAX video decoder module. This program |
6 // will take video in elementary stream and read into the decoder. | 6 // will take video in elementary stream and read into the decoder. |
7 // Usage of this program: | 7 // Usage of this program: |
8 // ./omx_test --file=<file> --component=<component> --codec=<codec> | 8 // ./omx_test --file=<file> --component=<component> --codec=<codec> |
9 // <file> = Input file name | 9 // <file> = Input file name |
10 // <component> = Name of the OpenMAX component | 10 // <component> = Name of the OpenMAX component |
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
519 copy, | 519 copy, |
520 measure_fps, | 520 measure_fps, |
521 enable_csc, | 521 enable_csc, |
522 loop_count); | 522 loop_count); |
523 | 523 |
524 // This call will run the decoder until EOS is reached or an error | 524 // This call will run the decoder until EOS is reached or an error |
525 // is encountered. | 525 // is encountered. |
526 test.Run(); | 526 test.Run(); |
527 return 0; | 527 return 0; |
528 } | 528 } |
OLD | NEW |