diff options
author | phintuka <phintuka> | 2008-06-21 22:34:46 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-06-21 22:34:46 +0000 |
commit | b17f1d505641a2a24153460c0b1bccba5fbeac46 (patch) | |
tree | f8a23d7d38e5dfd8f81feb63627108e71d9149c9 | |
parent | fa7e25f52b875831f30be5e42d16983a4c81853e (diff) | |
download | xineliboutput-b17f1d505641a2a24153460c0b1bccba5fbeac46.tar.gz xineliboutput-b17f1d505641a2a24153460c0b1bccba5fbeac46.tar.bz2 |
Removed abort()
-rw-r--r-- | xine_input_vdr.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c index 33f7af4f..37a9cd01 100644 --- a/xine_input_vdr.c +++ b/xine_input_vdr.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_input_vdr.c,v 1.158 2008-06-21 22:33:58 phintuka Exp $ + * $Id: xine_input_vdr.c,v 1.159 2008-06-21 22:34:46 phintuka Exp $ * */ @@ -4913,8 +4913,9 @@ static void post_frame_end(vdr_input_plugin_t *this, buf_element_t *vid_buf) cbuf = get_buf_element (this, 0, 1); } if (!cbuf) { - LOGERR("get_buf_element() for BUF_FLAG_FRAME_END failed - aborting"); - abort(); + LOGERR("get_buf_element() for BUF_FLAG_FRAME_END failed !"); + /*abort();*/ + return; } cbuf->type = this->h264 > 0 ? BUF_VIDEO_H264 : BUF_VIDEO_MPEG; |