diff options
| author | Thomas Reufer <thomas@reufer.ch> | 2015-03-21 23:25:04 +0100 |
|---|---|---|
| committer | Thomas Reufer <thomas@reufer.ch> | 2015-03-21 23:25:04 +0100 |
| commit | c4c2ed1228d632388b1d69e0a922e5875fdcc48e (patch) | |
| tree | 740dd3731bb2a96fc3c9385d4e9f96019b5cb412 | |
| parent | 2bf30066fa1fef65f0abe1330c398fca54b2e717 (diff) | |
| download | vdr-plugin-rpihddevice-c4c2ed1228d632388b1d69e0a922e5875fdcc48e.tar.gz vdr-plugin-rpihddevice-c4c2ed1228d632388b1d69e0a922e5875fdcc48e.tar.bz2 | |
removed allocation of 3 additional video buffers for image filter
| -rw-r--r-- | omx.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -926,7 +926,9 @@ int cOmx::SetVideoCodec(cVideoCodec::eCodec codec) // start with valid frames only if codec is MPEG2 // update: with FW from 2015/01/18 this is not necessary anymore SetVideoErrorConcealment(true /*codec == cVideoCodec::eMPEG2*/); - SetVideoDecoderExtraBuffers(3); + + // update: with FW from 2014/02/04 this is not necessary anymore + //SetVideoDecoderExtraBuffers(3); if (ilclient_enable_port_buffers(m_comp[eVideoDecoder], 130, NULL, NULL, NULL) != 0) ELOG("failed to enable port buffer on video decoder!"); |
