mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-14 22:22:59 +02:00
Use the correct type for the V4L2 format.
Originally committed as revision 20856 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
158aa9f2db
commit
9202218e5d
@ -72,7 +72,7 @@ struct buff_data {
|
|||||||
|
|
||||||
struct fmt_map {
|
struct fmt_map {
|
||||||
enum PixelFormat ff_fmt;
|
enum PixelFormat ff_fmt;
|
||||||
int32_t v4l2_fmt;
|
uint32_t v4l2_fmt;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct fmt_map fmt_conversion_table[] = {
|
static struct fmt_map fmt_conversion_table[] = {
|
||||||
@ -171,7 +171,7 @@ static int device_open(AVFormatContext *ctx, uint32_t *capabilities)
|
|||||||
return fd;
|
return fd;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int device_init(AVFormatContext *ctx, int *width, int *height, int pix_fmt)
|
static int device_init(AVFormatContext *ctx, int *width, int *height, uint32_t pix_fmt)
|
||||||
{
|
{
|
||||||
struct video_data *s = ctx->priv_data;
|
struct video_data *s = ctx->priv_data;
|
||||||
int fd = s->fd;
|
int fd = s->fd;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user