c6821c741d
to avoid th global big lock and improve the performance. Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
92 lines
3.5 KiB
C
92 lines
3.5 KiB
C
/****************************************************************************
|
|
* drivers/video/video_framebuff.h
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __DRIVERS_VIDEO_VIDEO_FRAMEBUFF_H
|
|
#define __DRIVERS_VIDEO_VIDEO_FRAMEBUFF_H
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <sys/videoio.h>
|
|
|
|
#include <nuttx/mutex.h>
|
|
#include <nuttx/spinlock.h>
|
|
|
|
/****************************************************************************
|
|
* Public Types
|
|
****************************************************************************/
|
|
|
|
struct vbuf_container_s
|
|
{
|
|
struct v4l2_buffer buf; /* Buffer information */
|
|
struct vbuf_container_s *next; /* Pointer to next buffer */
|
|
};
|
|
|
|
typedef struct vbuf_container_s vbuf_container_t;
|
|
|
|
struct video_framebuff_s
|
|
{
|
|
enum v4l2_buf_mode mode;
|
|
spinlock_t lock_queue;
|
|
mutex_t lock_empty;
|
|
int container_size;
|
|
vbuf_container_t *vbuf_alloced;
|
|
vbuf_container_t *vbuf_empty;
|
|
vbuf_container_t *vbuf_top;
|
|
vbuf_container_t *vbuf_tail;
|
|
vbuf_container_t *vbuf_next;
|
|
};
|
|
|
|
typedef struct video_framebuff_s video_framebuff_t;
|
|
|
|
/****************************************************************************
|
|
* Public Function Prototypes
|
|
****************************************************************************/
|
|
|
|
/* Buffer access interface. */
|
|
|
|
void video_framebuff_init
|
|
(video_framebuff_t *fbuf);
|
|
void video_framebuff_uninit
|
|
(video_framebuff_t *fbuf);
|
|
int video_framebuff_realloc_container
|
|
(video_framebuff_t *fbuf, int sz);
|
|
vbuf_container_t *video_framebuff_get_container
|
|
(video_framebuff_t *fbuf);
|
|
void video_framebuff_free_container
|
|
(video_framebuff_t *fbuf, vbuf_container_t *cnt);
|
|
int video_framebuff_is_empty
|
|
(video_framebuff_t *fbuf);
|
|
void video_framebuff_queue_container
|
|
(video_framebuff_t *fbuf, vbuf_container_t *tgt);
|
|
vbuf_container_t *video_framebuff_dq_valid_container
|
|
(video_framebuff_t *fbuf);
|
|
vbuf_container_t *video_framebuff_get_vacant_container
|
|
(video_framebuff_t *fbuf);
|
|
vbuf_container_t *video_framebuff_pop_curr_container
|
|
(video_framebuff_t *fbuf);
|
|
void video_framebuff_capture_done
|
|
(video_framebuff_t *fbuf);
|
|
void video_framebuff_change_mode
|
|
(video_framebuff_t *fbuf, enum v4l2_buf_mode mode);
|
|
|
|
#endif /* __DRIVERS_VIDEO_VIDEO_FRAMEBUFF_H */
|