Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 76403
b: refs/heads/master
c: 9e31ced
h: refs/heads/master
i:
  76401: 8e67b85
  76399: 216b6c4
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Jan 25, 2008
1 parent 2dca206 commit 570a1ac
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a225452ef80a7bd894fd2dfd01a4973d444152f4
refs/heads/master: 9e31ced888d1ca49ec5be51ef295e3ce994366c4
30 changes: 22 additions & 8 deletions trunk/drivers/media/video/em28xx/em28xx-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,9 @@ em28xx_v4l2_read(struct file *filp, char __user * buf, size_t count,
struct em28xx_fh *fh = filp->private_data;
struct em28xx *dev = fh->dev;

/* FIXME: read() is not prepared to allow changing the video
resolution while streaming. Seems a bug at em28xx_set_fmt
*/

if (unlikely(res_get(fh) < 0))
return -EBUSY;
Expand Down Expand Up @@ -498,25 +501,36 @@ em28xx_v4l2_read(struct file *filp, char __user * buf, size_t count,
mutex_unlock(&dev->lock);
return -ENODEV;
}
dev->video_bytesread = 0;
}

f = list_entry(dev->outqueue.prev, struct em28xx_frame_t, frame);

spin_lock_irqsave(&dev->queue_lock, lock_flags);
list_for_each_entry(i, &dev->outqueue, frame)
i->state = F_UNUSED;
INIT_LIST_HEAD(&dev->outqueue);
spin_unlock_irqrestore(&dev->queue_lock, lock_flags);

em28xx_queue_unusedframes(dev);

if (count > f->buf.length)
count = f->buf.length;

if (copy_to_user(buf, f->bufmem, count)) {
mutex_unlock(&dev->lock);
if ((dev->video_bytesread + count) > dev->frame_size)
count = dev->frame_size - dev->video_bytesread;

if (copy_to_user(buf, f->bufmem+dev->video_bytesread, count)) {
em28xx_err("Error while copying to user\n");
return -EFAULT;
}
dev->video_bytesread += count;

if (dev->video_bytesread == dev->frame_size) {
spin_lock_irqsave(&dev->queue_lock, lock_flags);
list_for_each_entry(i, &dev->outqueue, frame)
i->state = F_UNUSED;
INIT_LIST_HEAD(&dev->outqueue);
spin_unlock_irqrestore(&dev->queue_lock, lock_flags);

em28xx_queue_unusedframes(dev);
dev->video_bytesread = 0;
}

*f_pos += count;

mutex_unlock(&dev->lock);
Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/media/video/em28xx/em28xx.h
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ struct em28xx {
int vscale; /* vertical scale factor (see datasheet) */
int interlaced; /* 1=interlace fileds, 0=just top fileds */
int type;
unsigned int video_bytesread; /* Number of bytes read */

unsigned long hash; /* eeprom hash - for boards with generic ID */
unsigned long i2c_hash; /* i2c devicelist hash - for boards with generic ID */
Expand All @@ -268,6 +269,7 @@ struct em28xx {
enum em28xx_dev_state state;
enum em28xx_stream_state stream;
enum em28xx_io_method io;

/* locks */
struct mutex lock;
spinlock_t queue_lock;
Expand Down

0 comments on commit 570a1ac

Please sign in to comment.