mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
libeplayer: reduce debugging output
Origin commit data
------------------
Branch: master
Commit: 54e719207a
Author: martii <m4rtii@gmx.de>
Date: 2013-07-19 (Fri, 19 Jul 2013)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -569,7 +569,7 @@ static void FFMPEGThread(Context_t *context) {
|
||||
|
||||
int len = avcodec_decode_audio4(c, decoded_frame, &got_frame, &avpkt);
|
||||
if (len < 0) {
|
||||
fprintf(stderr, "avcodec_decode_audio4: %d\n", len);
|
||||
// fprintf(stderr, "avcodec_decode_audio4: %d\n", len);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@@ -952,7 +952,7 @@ static int Write(void *_context, void* _out)
|
||||
if (writer->writeData)
|
||||
res = writer->writeData(&call);
|
||||
|
||||
if (res <= 0)
|
||||
if (res < 0)
|
||||
{
|
||||
linuxdvb_err("failed to write data %d - %d\n", res, errno);
|
||||
linuxdvb_err("%s\n", strerror(errno));
|
||||
@@ -994,7 +994,7 @@ static int Write(void *_context, void* _out)
|
||||
if (writer->writeData)
|
||||
res = writer->writeData(&call);
|
||||
|
||||
if (res <= 0)
|
||||
if (res < 0)
|
||||
{
|
||||
linuxdvb_err("failed to write data %d - %d\n", res, errno);
|
||||
linuxdvb_err("%s\n", strerror(errno));
|
||||
|
Reference in New Issue
Block a user