diff options
| author | Richard Tang <richard.tang@intel.com> | 2011-07-25 16:10:43 +0800 |
|---|---|---|
| committer | Patrick Tjin <pattjin@google.com> | 2014-07-21 22:02:44 -0700 |
| commit | 3b071700102a7e0f0ccf86064e9463a42aa98d59 (patch) | |
| tree | bda942ff5a6c404830e73ebad0561b514bd8f6d0 | |
| parent | 9ec0019a4e1ec7305ca40e3a92b03729cc37c49f (diff) | |
| download | android_hardware_intel_common_omx-components-3b071700102a7e0f0ccf86064e9463a42aa98d59.tar.gz android_hardware_intel_common_omx-components-3b071700102a7e0f0ccf86064e9463a42aa98d59.tar.bz2 android_hardware_intel_common_omx-components-3b071700102a7e0f0ccf86064e9463a42aa98d59.zip | |
videocodec: change outport's buffer size to 4
BZ: 1917
MPEG4-BP_AAC-LC-44K_1080P_noaudio.mp4's bit rate is 34.7 Mbps.
This patch change outport's buffer size from 3 to 4.
With this change the FPS increase from 17.2FPS to 23.1FPS on WW29 + patch#12338.
Change-Id: Ie785b443ac0bbd43a561670000755eca00cc6588
Signed-off-by: Richard Tang <richard.tang@intel.com>
| -rw-r--r-- | videocodec/OMXVideoDecoderBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/videocodec/OMXVideoDecoderBase.h b/videocodec/OMXVideoDecoderBase.h index 43ae432..f835451 100644 --- a/videocodec/OMXVideoDecoderBase.h +++ b/videocodec/OMXVideoDecoderBase.h @@ -65,7 +65,7 @@ private: // OMX_PARAM_PORTDEFINITIONTYPE OUTPORT_MIN_BUFFER_COUNT = 1, - OUTPORT_ACTUAL_BUFFER_COUNT = 3, + OUTPORT_ACTUAL_BUFFER_COUNT = 4, OUTPORT_BUFFER_SIZE = 1382400, }; |
