summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morton <akpm@digeo.com>2003-05-18 20:28:41 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2003-05-18 20:28:41 -0700
commit868bec4439f5719320271e5fdf13a50abbcae102 (patch)
tree7fa34dca4f5b67088dc559b4f2fa4faded54e01c
parent98063ca722718f8d6861202aa9e5bee2c7010b0d (diff)
[PATCH] v4l: #1 - video-buf update
From: Gerd Knorr <kraxel@bytesex.org> This minor patch updates the video-buf module. It just adds a export for the videobuf_next_field function and adds some debug printk's.
-rw-r--r--drivers/media/video/video-buf.c43
-rw-r--r--include/media/video-buf.h1
2 files changed, 32 insertions, 12 deletions
diff --git a/drivers/media/video/video-buf.c b/drivers/media/video/video-buf.c
index 36c155bfd42f..dd4ed151448b 100644
--- a/drivers/media/video/video-buf.c
+++ b/drivers/media/video/video-buf.c
@@ -362,21 +362,33 @@ videobuf_queue_is_busy(struct videobuf_queue *q)
{
int i;
- if (q->reading)
+ if (q->streaming) {
+ dprintk(1,"busy: streaming active\n");
return 1;
- if (q->streaming)
+ }
+ if (q->reading) {
+ dprintk(1,"busy: pending read #1\n");
return 1;
- if (q->read_buf)
+ }
+ if (q->read_buf) {
+ dprintk(1,"busy: pending read #2\n");
return 1;
+ }
for (i = 0; i < VIDEO_MAX_FRAME; i++) {
if (NULL == q->bufs[i])
continue;
- if (q->bufs[i]->map)
+ if (q->bufs[i]->map) {
+ dprintk(1,"busy: buffer #%d mapped\n",i);
return 1;
- if (q->bufs[i]->state == STATE_QUEUED)
+ }
+ if (q->bufs[i]->state == STATE_QUEUED) {
+ dprintk(1,"busy: buffer #%d queued\n",i);
return 1;
- if (q->bufs[i]->state == STATE_ACTIVE)
+ }
+ if (q->bufs[i]->state == STATE_ACTIVE) {
+ dprintk(1,"busy: buffer #%d avtive\n",i);
return 1;
+ }
}
return 0;
}
@@ -569,7 +581,7 @@ videobuf_dqbuf(struct file *file, struct videobuf_queue *q,
if (list_empty(&q->stream))
goto done;
buf = list_entry(q->stream.next, struct videobuf_buffer, stream);
- retval = videobuf_waiton(buf,1,1);
+ retval = videobuf_waiton(buf, file->f_flags & O_NONBLOCK, 1);
if (retval < 0)
goto done;
switch (buf->state) {
@@ -925,6 +937,9 @@ static void
videobuf_vm_open(struct vm_area_struct *vma)
{
struct videobuf_mapping *map = vma->vm_private_data;
+
+ dprintk(2,"vm_open %p [count=%d,vma=%08lx-%08lx]\n",map,
+ map->count,vma->vm_start,vma->vm_end);
map->count++;
}
@@ -934,6 +949,9 @@ videobuf_vm_close(struct vm_area_struct *vma)
struct videobuf_mapping *map = vma->vm_private_data;
int i;
+ dprintk(2,"vm_close %p [count=%d,vma=%08lx-%08lx]\n",map,
+ map->count,vma->vm_start,vma->vm_end);
+
/* down(&fh->lock); FIXME */
map->count--;
if (0 == map->count) {
@@ -1081,11 +1099,11 @@ int videobuf_mmap_mapper(struct vm_area_struct *vma,
q->bufs[i]->map = map;
q->bufs[i]->baddr = vma->vm_start + size;
}
- map->count = 1;
- map->start = vma->vm_start;
- map->end = vma->vm_end;
- map->q = q;
- vma->vm_ops = &videobuf_vm_ops;
+ map->count = 1;
+ map->start = vma->vm_start;
+ map->end = vma->vm_end;
+ map->q = q;
+ vma->vm_ops = &videobuf_vm_ops;
vma->vm_flags |= VM_DONTEXPAND;
vma->vm_flags &= ~VM_IO; /* using shared anonymous pages */
vma->vm_private_data = map;
@@ -1119,6 +1137,7 @@ EXPORT_SYMBOL_GPL(videobuf_queue_init);
EXPORT_SYMBOL_GPL(videobuf_queue_cancel);
EXPORT_SYMBOL_GPL(videobuf_queue_is_busy);
+EXPORT_SYMBOL_GPL(videobuf_next_field);
EXPORT_SYMBOL_GPL(videobuf_status);
EXPORT_SYMBOL_GPL(videobuf_reqbufs);
EXPORT_SYMBOL_GPL(videobuf_querybuf);
diff --git a/include/media/video-buf.h b/include/media/video-buf.h
index fceea3e24f75..aefb7fa99f35 100644
--- a/include/media/video-buf.h
+++ b/include/media/video-buf.h
@@ -196,6 +196,7 @@ void videobuf_queue_init(struct videobuf_queue *q,
int videobuf_queue_is_busy(struct videobuf_queue *q);
void videobuf_queue_cancel(struct file *file, struct videobuf_queue *q);
+enum v4l2_field videobuf_next_field(struct videobuf_queue *q);
void videobuf_status(struct v4l2_buffer *b, struct videobuf_buffer *vb,
enum v4l2_buf_type type);
int videobuf_reqbufs(struct file *file, struct videobuf_queue *q,