summaryrefslogtreecommitdiffstats
path: root/stream/tvi_v4l2.c
diff options
context:
space:
mode:
authorBruno George Moraes <brunogm0@gmail.com>2014-09-26 11:00:40 -0300
committerwm4 <wm4@nowhere>2014-09-27 16:01:49 +0200
commitacf6aef882eae08d87e353e7c6b33a179f4dea78 (patch)
treec7ddc80da11f8edd98b61dcdcb9dc4d807c176a3 /stream/tvi_v4l2.c
parent650af294716e34a3992770aab23aafebb358bac8 (diff)
downloadmpv-acf6aef882eae08d87e353e7c6b33a179f4dea78.tar.bz2
mpv-acf6aef882eae08d87e353e7c6b33a179f4dea78.tar.xz
stream: change malloc+memset to calloc
Also removed some memset that were left on some calloc that was already in the code. Signed-off-by: wm4 <wm4@nowhere>
Diffstat (limited to 'stream/tvi_v4l2.c')
-rw-r--r--stream/tvi_v4l2.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/stream/tvi_v4l2.c b/stream/tvi_v4l2.c
index f2ec84d4cf..f339b83439 100644
--- a/stream/tvi_v4l2.c
+++ b/stream/tvi_v4l2.c
@@ -1350,8 +1350,6 @@ static int start(priv_t *priv)
MP_ERR(priv, "cannot allocate video buffer: %s\n", strerror(errno));
return 0;
}
- memset(priv->video_ringbuffer,0,priv->video_buffer_size_max * sizeof(video_buffer_entry));
-
pthread_mutex_init(&priv->video_buffer_mutex, NULL);
priv->video_head = 0;
@@ -1382,7 +1380,6 @@ static int start(priv_t *priv)
/* map and queue buffers */
for (i = 0; i < request.count; i++) {
- memset(&priv->map[i].buf,0,sizeof(priv->map[i].buf));
priv->map[i].buf.index = i;
priv->map[i].buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
priv->map[i].buf.memory = V4L2_MEMORY_MMAP;