diff options
author | Johns <johns98@gmx.net> | 2013-07-15 17:00:22 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2013-07-15 17:00:22 +0200 |
commit | cc1e2de58ba213d79f20ad4d80609ede45470edc (patch) | |
tree | 40b1e100e9f302cea7ae076e8b110a36a2f2846c /softhddevice.cpp | |
parent | 738e9402d2e8e97b94dd76cd740aa6da8970da2d (diff) | |
download | vdr-plugin-softhddevice-cc1e2de58ba213d79f20ad4d80609ede45470edc.tar.gz vdr-plugin-softhddevice-cc1e2de58ba213d79f20ad4d80609ede45470edc.tar.bz2 |
Reduce PES error messages.
Diffstat (limited to 'softhddevice.cpp')
-rw-r--r-- | softhddevice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/softhddevice.cpp b/softhddevice.cpp index 8bda7cd..825035f 100644 --- a/softhddevice.cpp +++ b/softhddevice.cpp @@ -1443,12 +1443,12 @@ static void PipPesParse(const uint8_t * data, int size, int is_start) if (is_start) { // start of pes packet if (pes_index) { if (0) { - fprintf(stderr, "pip: pes packet %8d %02x%02x\n", pes_index, + fprintf(stderr, "pip: PES packet %8d %02x%02x\n", pes_index, pes_buf[2], pes_buf[3]); } if (pes_buf[0] || pes_buf[1] || pes_buf[2] != 0x01) { // FIXME: first should always fail - esyslog(tr("[softhddev]pip: invalid pes packet %d\n"), + esyslog(tr("[softhddev]pip: invalid PES packet %d\n"), pes_index); } else { PipPlayVideo(pes_buf, pes_index); |