summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Reufer <thomas@reufer.ch>2015-03-21 23:25:04 +0100
committerThomas Reufer <thomas@reufer.ch>2015-03-21 23:25:04 +0100
commitc4c2ed1228d632388b1d69e0a922e5875fdcc48e (patch)
tree740dd3731bb2a96fc3c9385d4e9f96019b5cb412
parent2bf30066fa1fef65f0abe1330c398fca54b2e717 (diff)
downloadvdr-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.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/omx.c b/omx.c
index 1bd1ded..5e7854c 100644
--- a/omx.c
+++ b/omx.c
@@ -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!");