summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/dxr3/dxr3_decode_video.c4
-rw-r--r--src/dxr3/video_out_dxr3.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/dxr3/dxr3_decode_video.c b/src/dxr3/dxr3_decode_video.c
index ded0a5624..f27c58146 100644
--- a/src/dxr3/dxr3_decode_video.c
+++ b/src/dxr3/dxr3_decode_video.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: dxr3_decode_video.c,v 1.46 2003/11/26 23:44:09 f1rmb Exp $
+ * $Id: dxr3_decode_video.c,v 1.47 2003/11/29 19:35:39 mroi Exp $
*/
/* dxr3 video decoder plugin.
@@ -494,7 +494,7 @@ static void dxr3_decode_data(video_decoder_t *this_gen, buf_element_t *buf)
/* open the device for the decoder */
snprintf (tmpstr, sizeof(tmpstr), "%s_mv%s", this->devname, this->devnum);
- if ((this->fd_video = open(tmpstr, O_WRONLY | O_NONBLOCK)) < 0) {
+ if ((this->fd_video = open(tmpstr, O_WRONLY)) < 0) {
printf("dxr3_decode_video: Failed to open video device %s (%s)\n",
tmpstr, strerror(errno));
return;
diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c
index 695ce0890..d62f07d38 100644
--- a/src/dxr3/video_out_dxr3.c
+++ b/src/dxr3/video_out_dxr3.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_dxr3.c,v 1.93 2003/11/26 23:44:09 f1rmb Exp $
+ * $Id: video_out_dxr3.c,v 1.94 2003/11/29 19:35:39 mroi Exp $
*/
/* mpeg1 encoding video out plugin for the dxr3.
@@ -625,7 +625,7 @@ static void dxr3_update_frame_format(vo_driver_t *this_gen, vo_frame_t *frame_ge
/* open the device for the encoder */
snprintf(tmpstr, sizeof(tmpstr), "%s_mv%s", this->class->devname, this->class->devnum);
- if ((this->fd_video = open(tmpstr, O_WRONLY | O_NONBLOCK)) < 0)
+ if ((this->fd_video = open(tmpstr, O_WRONLY)) < 0)
printf("video_out_dxr3: Failed to open video device %s (%s)\n",
tmpstr, strerror(errno));