Browse Source

Add a mapping for the V4L2_PIX_FMT_NV12 format to PIX_FMT_NV12 for

video4linux2 devices. This is used by Sensoray Model 2253 cards.
Patch by Pete Eberlein (pete AT sensoray DOT com)

Originally committed as revision 24759 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Pete Eberlein Luca Abeni 15 years ago
parent
commit
b4f81b7429
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavdevice/v4l2.c

+ 5
- 0
libavdevice/v4l2.c View File

@@ -138,6 +138,11 @@ static struct fmt_map fmt_conversion_table[] = {
.codec_id = CODEC_ID_RAWVIDEO,
.v4l2_fmt = V4L2_PIX_FMT_GREY,
},
{
.ff_fmt = PIX_FMT_NV12,
.codec_id = CODEC_ID_RAWVIDEO,
.v4l2_fmt = V4L2_PIX_FMT_NV12,
},
{
.ff_fmt = PIX_FMT_NONE,
.codec_id = CODEC_ID_MJPEG,


Loading…
Cancel
Save