1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
|
/*****************************************************************************
* demux.c : V4L2 raw video demux module for vlc
*****************************************************************************
* Copyright (C) 2002-2011 VLC authors and VideoLAN
*
* Authors: Benjamin Pracht <bigben at videolan dot org>
* Richard Hosking <richard at hovis dot net>
* Antoine Cellerier <dionoea at videolan d.t org>
* Dennis Lou <dlou99 at yahoo dot com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <math.h>
#include <errno.h>
#include <assert.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#ifndef MAP_ANONYMOUS
# define MAP_ANONYMOUS MAP_ANON
#endif
#include <poll.h>
#include <vlc_common.h>
#include <vlc_demux.h>
#include "v4l2.h"
struct demux_sys_t
{
int fd;
vlc_thread_t thread;
struct buffer_t *bufv;
union
{
uint32_t bufc;
uint32_t blocksize;
};
uint32_t block_flags;
es_out_id_t *es;
vlc_v4l2_ctrl_t *controls;
vlc_tick_t start;
#ifdef ZVBI_COMPILED
vlc_v4l2_vbi_t *vbi;
#endif
};
static void *UserPtrThread (void *);
static void *MmapThread (void *);
static void *ReadThread (void *);
static int DemuxControl( demux_t *, int, va_list );
static int InitVideo (demux_t *, int fd, uint32_t caps);
int DemuxOpen( vlc_object_t *obj )
{
demux_t *demux = (demux_t *)obj;
demux_sys_t *sys = malloc (sizeof (*sys));
if (unlikely(sys == NULL))
return VLC_ENOMEM;
demux->p_sys = sys;
#ifdef ZVBI_COMPILED
sys->vbi = NULL;
#endif
ParseMRL( obj, demux->psz_location );
char *path = var_InheritString (obj, CFG_PREFIX"dev");
if (unlikely(path == NULL))
goto error; /* probably OOM */
uint32_t caps;
int fd = OpenDevice (obj, path, &caps);
free (path);
if (fd == -1)
goto error;
sys->fd = fd;
if (InitVideo (demux, fd, caps))
{
v4l2_close (fd);
goto error;
}
sys->controls = ControlsInit (VLC_OBJECT(demux), fd);
sys->start = mdate ();
demux->pf_demux = NULL;
demux->pf_control = DemuxControl;
demux->info.i_update = 0;
demux->info.i_title = 0;
demux->info.i_seekpoint = 0;
return VLC_SUCCESS;
error:
free (sys);
return VLC_EGENERIC;
}
typedef struct
{
uint32_t v4l2;
vlc_fourcc_t vlc;
uint8_t bpp; /**< Bytes per pixel (largest plane) */
uint32_t red;
uint32_t green;
uint32_t blue;
} vlc_v4l2_fmt_t;
/* NOTE: Currently vlc_v4l2_fmt_rank() assumes format are sorted in order of
* decreasing preference. */
static const vlc_v4l2_fmt_t v4l2_fmts[] =
{
/* Planar YUV 4:2:0 */
{ V4L2_PIX_FMT_YUV420, VLC_CODEC_I420, 1, 0, 0, 0 },
{ V4L2_PIX_FMT_YVU420, VLC_CODEC_YV12, 1, 0, 0, 0 },
{ V4L2_PIX_FMT_YUV422P, VLC_CODEC_I422, 1, 0, 0, 0 },
/* Packed YUV 4:2:2 */
{ V4L2_PIX_FMT_YUYV, VLC_CODEC_YUYV, 2, 0, 0, 0 },
{ V4L2_PIX_FMT_UYVY, VLC_CODEC_UYVY, 2, 0, 0, 0 },
{ V4L2_PIX_FMT_YVYU, VLC_CODEC_YVYU, 2, 0, 0, 0 },
{ V4L2_PIX_FMT_VYUY, VLC_CODEC_VYUY, 2, 0, 0, 0 },
{ V4L2_PIX_FMT_YUV411P, VLC_CODEC_I411, 1, 0, 0, 0 },
{ V4L2_PIX_FMT_YUV410, VLC_CODEC_I410, 1, 0, 0, 0 },
// { V4L2_PIX_FMT_YVU410 },
// { V4L2_PIX_FMT_NV24, },
// { V4L2_PIX_FMT_NV42, },
// { V4L2_PIX_FMT_NV16, VLC_CODEC_NV16, 1, 0, 0, 0 },
// { V4L2_PIX_FMT_NV61, VLC_CODEC_NV61, 1, 0, 0, 0 },
{ V4L2_PIX_FMT_NV12, VLC_CODEC_NV12, 1, 0, 0, 0 },
{ V4L2_PIX_FMT_NV21, VLC_CODEC_NV21, 1, 0, 0, 0 },
/* V4L2-documented but VLC-unsupported misc. YUV formats */
// { V4L2_PIX_FMT_Y41P },
// { V4L2_PIX_FMT_NV12MT, },
// { V4L2_PIX_FMT_M420, },
{ V4L2_PIX_FMT_ABGR32, VLC_CODEC_BGRA, 4, 0, 0, 0 },
/* Packed RGB */
#ifdef WORDS_BIGENDIAN
{ V4L2_PIX_FMT_RGB32, VLC_CODEC_RGB32, 4, 0xFF00, 0xFF0000, 0xFF000000 },
{ V4L2_PIX_FMT_BGR32, VLC_CODEC_RGB32, 4, 0xFF000000, 0xFF0000, 0xFF00 },
{ V4L2_PIX_FMT_XBGR32, VLC_CODEC_RGB32, 4, 0xFF000000, 0xFF0000, 0xFF00 },
{ V4L2_PIX_FMT_RGB24, VLC_CODEC_RGB24, 3, 0xFF0000, 0x00FF00, 0x0000FF },
{ V4L2_PIX_FMT_BGR24, VLC_CODEC_RGB24, 3, 0x0000FF, 0x00FF00, 0xFF0000 },
// { V4L2_PIX_FMT_BGR666, },
// { V4L2_PIX_FMT_RGB565, },
{ V4L2_PIX_FMT_RGB565X, VLC_CODEC_RGB16, 2, 0x001F, 0x07E0, 0xF800 },
// { V4L2_PIX_FMT_RGB555, },
{ V4L2_PIX_FMT_RGB555X, VLC_CODEC_RGB15, 2, 0x001F, 0x03E0, 0x7C00 },
// { V4L2_PIX_FMT_RGB444, VLC_CODEC_RGB12, 2, 0x000F, 0xF000, 0x0F00 },
#else
{ V4L2_PIX_FMT_RGB32, VLC_CODEC_RGB32, 4, 0x0000FF, 0x00FF00, 0xFF0000 },
{ V4L2_PIX_FMT_BGR32, VLC_CODEC_RGB32, 4, 0xFF0000, 0x00FF00, 0x0000FF },
{ V4L2_PIX_FMT_XBGR32, VLC_CODEC_RGB32, 4, 0xFF0000, 0x00FF00, 0x0000FF },
{ V4L2_PIX_FMT_RGB24, VLC_CODEC_RGB24, 3, 0x0000FF, 0x00FF00, 0xFF0000 },
{ V4L2_PIX_FMT_BGR24, VLC_CODEC_RGB24, 3, 0xFF0000, 0x00FF00, 0x0000FF },
// { V4L2_PIX_FMT_BGR666, },
{ V4L2_PIX_FMT_RGB565, VLC_CODEC_RGB16, 2, 0x001F, 0x07E0, 0xF800 },
// { V4L2_PIX_FMT_RGB565X, },
{ V4L2_PIX_FMT_RGB555, VLC_CODEC_RGB15, 2, 0x001F, 0x03E0, 0x7C00 },
// { V4L2_PIX_FMT_RGB555X, },
// { V4L2_PIX_FMT_RGB444, VLC_CODEC_RGB12, 2, 0x0F00, 0x00F0, 0x000F },
#endif
// { V4L2_PIX_FMT_RGB332, VLC_CODEC_RGB8, 1, 0xC0, 0x38, 0x07 },
/* Bayer (sub-sampled RGB). Not supported. */
// { V4L2_PIX_FMT_SBGGR16, }
// { V4L2_PIX_FMT_SRGGB12, }
// { V4L2_PIX_FMT_SGRBG12, }
// { V4L2_PIX_FMT_SGBRG12, }
// { V4L2_PIX_FMT_SBGGR12, }
// { V4L2_PIX_FMT_SRGGB10, }
// { V4L2_PIX_FMT_SGRBG10, }
// { V4L2_PIX_FMT_SGBRG10, }
// { V4L2_PIX_FMT_SBGGR10, }
// { V4L2_PIX_FMT_SBGGR8, }
// { V4L2_PIX_FMT_SGBRG8, }
// { V4L2_PIX_FMT_SGRBG8, }
// { V4L2_PIX_FMT_SRGGB8, }
/* Compressed data types */
{ V4L2_PIX_FMT_JPEG, VLC_CODEC_MJPG, 0, 0, 0, 0 },
{ V4L2_PIX_FMT_H264, VLC_CODEC_H264, 0, 0, 0, 0 },
/* FIXME: fill p_extra for avc1... */
// { V4L2_PIX_FMT_H264_NO_SC, VLC_FOURCC('a','v','c','1'), 0, 0, 0, 0 }
{ V4L2_PIX_FMT_MPEG4, VLC_CODEC_MP4V, 0, 0, 0, 0 },
{ V4L2_PIX_FMT_XVID, VLC_CODEC_MP4V, 0, 0, 0, 0 },
{ V4L2_PIX_FMT_H263, VLC_CODEC_H263, 0, 0, 0, 0 },
{ V4L2_PIX_FMT_MPEG2, VLC_CODEC_MPGV, 0, 0, 0, 0 },
{ V4L2_PIX_FMT_MPEG1, VLC_CODEC_MPGV, 0, 0, 0, 0 },
{ V4L2_PIX_FMT_VC1_ANNEX_G, VLC_CODEC_VC1, 0, 0, 0, 0 },
{ V4L2_PIX_FMT_VC1_ANNEX_L, VLC_CODEC_VC1, 0, 0, 0, 0 },
//V4L2_PIX_FMT_MPEG -> use access
/* Reserved formats */
{ V4L2_PIX_FMT_MJPEG, VLC_CODEC_MJPG, 0, 0, 0, 0 },
//V4L2_PIX_FMT_DV -> use access
/* Grey scale */
// { V4L2_PIX_FMT_Y16, },
// { V4L2_PIX_FMT_Y12, },
// { V4L2_PIX_FMT_Y10, },
// { V4L2_PIX_FMT_Y10BPACK, },
{ V4L2_PIX_FMT_GREY, VLC_CODEC_GREY, 1, 0, 0, 0 },
};
static const vlc_v4l2_fmt_t *vlc_from_v4l2_fourcc (uint32_t fourcc)
{
for (size_t i = 0; i < sizeof (v4l2_fmts) / sizeof (v4l2_fmts[0]); i++)
if (v4l2_fmts[i].v4l2 == fourcc)
return v4l2_fmts + i;
return NULL;
}
static size_t vlc_v4l2_fmt_rank (const vlc_v4l2_fmt_t *fmt)
{
if (fmt == NULL)
return SIZE_MAX;
ptrdiff_t d = fmt - v4l2_fmts;
assert (d >= 0);
assert (d < (ptrdiff_t)(sizeof (v4l2_fmts) / sizeof (v4l2_fmts[0])));
return d;
}
static vlc_fourcc_t var_InheritFourCC (vlc_object_t *obj, const char *varname)
{
char *str = var_InheritString (obj, varname);
if (str == NULL)
return 0;
vlc_fourcc_t fourcc = vlc_fourcc_GetCodecFromString (VIDEO_ES, str);
if (fourcc == 0)
msg_Err (obj, "invalid codec %s", str);
free (str);
return fourcc;
}
#define var_InheritFourCC(o, v) var_InheritFourCC(VLC_OBJECT(o), v)
static void GetAR (int fd, unsigned *restrict num, unsigned *restrict den)
{
struct v4l2_cropcap cropcap = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
/* TODO: get CROPCAP only once (see ResetCrop()). */
if (v4l2_ioctl (fd, VIDIOC_CROPCAP, &cropcap) < 0)
{
*num = *den = 1;
return;
}
*num = cropcap.pixelaspect.numerator;
*den = cropcap.pixelaspect.denominator;
}
static int InitVideo (demux_t *demux, int fd, uint32_t caps)
{
demux_sys_t *sys = demux->p_sys;
v4l2_std_id std;
if (!(caps & V4L2_CAP_VIDEO_CAPTURE))
{
msg_Err (demux, "not a video capture device");
return -1;
}
if (SetupInput (VLC_OBJECT(demux), fd, &std))
return -1;
/* Picture format negotiation */
const vlc_v4l2_fmt_t *selected = NULL;
vlc_fourcc_t reqfourcc = var_InheritFourCC (demux, CFG_PREFIX"chroma");
bool native = false;
for (struct v4l2_fmtdesc codec = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
v4l2_ioctl (fd, VIDIOC_ENUM_FMT, &codec) >= 0;
codec.index++)
{ /* Enumerate available chromas */
const vlc_v4l2_fmt_t *dsc = vlc_from_v4l2_fourcc (codec.pixelformat);
msg_Dbg (demux, " %s %s format %4.4s (%4.4s): %s",
(codec.flags & V4L2_FMT_FLAG_EMULATED) ? "emulates" : "supports",
(codec.flags & V4L2_FMT_FLAG_COMPRESSED) ? "compressed" : "raw",
(char *)&codec.pixelformat,
(dsc != NULL) ? (const char *)&dsc->vlc : "N.A.",
codec.description);
if (dsc == NULL)
continue; /* ignore VLC-unsupported codec */
if (dsc->vlc == reqfourcc)
{
msg_Dbg (demux, " matches the requested format");
selected = dsc;
break; /* always select the requested format if found */
}
if (codec.flags & V4L2_FMT_FLAG_EMULATED)
{
if (native)
continue; /* ignore emulated format if possible */
}
else
native = true;
if (vlc_v4l2_fmt_rank (dsc) > vlc_v4l2_fmt_rank (selected))
continue; /* ignore if rank is worse */
selected = dsc;
}
if (selected == NULL)
{
msg_Err (demux, "cannot negotiate supported video format");
return -1;
}
msg_Dbg (demux, "selected format %4.4s (%4.4s)",
(const char *)&selected->v4l2, (const char *)&selected->vlc);
/* Find best resolution and frame rate available */
struct v4l2_format fmt;
struct v4l2_streamparm parm;
if (SetupFormat (demux, fd, selected->v4l2, &fmt, &parm))
return -1;
/* Print extra info */
msg_Dbg (demux, "%d bytes maximum for complete image",
fmt.fmt.pix.sizeimage);
/* Check interlacing */
sys->block_flags = 0;
switch (fmt.fmt.pix.field)
{
case V4L2_FIELD_NONE:
msg_Dbg (demux, "Interlacing setting: progressive");
break;
case V4L2_FIELD_TOP:
msg_Dbg (demux, "Interlacing setting: top field only");
sys->block_flags = BLOCK_FLAG_TOP_FIELD_FIRST|BLOCK_FLAG_SINGLE_FIELD;
break;
case V4L2_FIELD_BOTTOM:
msg_Dbg (demux, "Interlacing setting: bottom field only");
sys->block_flags = BLOCK_FLAG_BOTTOM_FIELD_FIRST|BLOCK_FLAG_SINGLE_FIELD;
break;
case V4L2_FIELD_INTERLACED:
msg_Dbg (demux, "Interlacing setting: interleaved");
/*if (NTSC)
sys->block_flags = BLOCK_FLAG_BOTTOM_FIELD_FIRST;
else*/
sys->block_flags = BLOCK_FLAG_TOP_FIELD_FIRST;
break;
case V4L2_FIELD_SEQ_TB:
msg_Dbg (demux, "Interlacing setting: sequential top bottom (TODO)");
break;
case V4L2_FIELD_SEQ_BT:
msg_Dbg (demux, "Interlacing setting: sequential bottom top (TODO)");
break;
case V4L2_FIELD_ALTERNATE:
msg_Dbg (demux, "Interlacing setting: alternate fields (TODO)");
fmt.fmt.pix.height *= 2;
break;
case V4L2_FIELD_INTERLACED_TB:
msg_Dbg (demux, "Interlacing setting: interleaved top bottom");
sys->block_flags = BLOCK_FLAG_TOP_FIELD_FIRST;
break;
case V4L2_FIELD_INTERLACED_BT:
msg_Dbg (demux, "Interlacing setting: interleaved bottom top");
sys->block_flags = BLOCK_FLAG_BOTTOM_FIELD_FIRST;
break;
default:
msg_Warn (demux, "Interlacing setting: unknown type (%d)",
fmt.fmt.pix.field);
break;
}
/* Declare our unique elementary (video) stream */
es_format_t es_fmt;
es_format_Init (&es_fmt, VIDEO_ES, selected->vlc);
es_fmt.video.i_chroma = selected->vlc;
es_fmt.video.i_rmask = selected->red;
es_fmt.video.i_gmask = selected->green;
es_fmt.video.i_bmask = selected->blue;
es_fmt.video.i_visible_width = fmt.fmt.pix.width;
if (fmt.fmt.pix.bytesperline != 0 && selected->bpp != 0)
es_fmt.video.i_width = fmt.fmt.pix.bytesperline / selected->bpp;
else
es_fmt.video.i_width = fmt.fmt.pix.width;
es_fmt.video.i_visible_height =
es_fmt.video.i_height = fmt.fmt.pix.height;
es_fmt.video.i_frame_rate = parm.parm.capture.timeperframe.denominator;
es_fmt.video.i_frame_rate_base = parm.parm.capture.timeperframe.numerator;
GetAR (fd, &es_fmt.video.i_sar_num, &es_fmt.video.i_sar_den);
msg_Dbg (demux, "color primaries: %u", fmt.fmt.pix.colorspace);
switch (fmt.fmt.pix.colorspace)
{
case V4L2_COLORSPACE_DEFAULT:
break;
case V4L2_COLORSPACE_SMPTE170M:
es_fmt.video.primaries = COLOR_PRIMARIES_BT601_525;
es_fmt.video.transfer = TRANSFER_FUNC_BT709;
es_fmt.video.space = COLOR_SPACE_BT601;
break;
case V4L2_COLORSPACE_SMPTE240M: /* not supported */
break;
case V4L2_COLORSPACE_REC709:
es_fmt.video.primaries = COLOR_PRIMARIES_BT709;
es_fmt.video.transfer = TRANSFER_FUNC_BT709;
es_fmt.video.space = COLOR_SPACE_BT709;
break;
case V4L2_COLORSPACE_470_SYSTEM_M:
es_fmt.video.transfer = TRANSFER_FUNC_BT709;
es_fmt.video.space = COLOR_SPACE_BT601;
break;
case V4L2_COLORSPACE_470_SYSTEM_BG:
es_fmt.video.primaries = COLOR_PRIMARIES_BT601_625;
es_fmt.video.transfer = TRANSFER_FUNC_BT709;
es_fmt.video.space = COLOR_SPACE_BT601;
break;
case V4L2_COLORSPACE_JPEG:
es_fmt.video.primaries = COLOR_PRIMARIES_SRGB;
es_fmt.video.transfer = TRANSFER_FUNC_SRGB;
es_fmt.video.space = COLOR_SPACE_BT601;
es_fmt.video.b_color_range_full = true;
break;
case V4L2_COLORSPACE_SRGB:
es_fmt.video.primaries = COLOR_PRIMARIES_SRGB;
es_fmt.video.transfer = TRANSFER_FUNC_SRGB;
es_fmt.video.space = COLOR_SPACE_UNDEF; /* sYCC unsupported */
break;
case V4L2_COLORSPACE_ADOBERGB: /* not supported */
es_fmt.video.space = COLOR_SPACE_BT601;
break;
case V4L2_COLORSPACE_BT2020:
es_fmt.video.primaries = COLOR_PRIMARIES_BT2020;
es_fmt.video.transfer = TRANSFER_FUNC_BT2020;
es_fmt.video.space = COLOR_SPACE_BT2020;
break;
case V4L2_COLORSPACE_RAW:
es_fmt.video.transfer = TRANSFER_FUNC_LINEAR;
break;
case V4L2_COLORSPACE_DCI_P3:
es_fmt.video.primaries = COLOR_PRIMARIES_DCI_P3;
es_fmt.video.transfer = TRANSFER_FUNC_UNDEF;
es_fmt.video.space = COLOR_SPACE_BT2020;
break;
default:
msg_Warn (demux, "unknown color space %u", fmt.fmt.pix.colorspace);
break;
}
msg_Dbg (demux, "transfer function: %u", fmt.fmt.pix.xfer_func);
switch (fmt.fmt.pix.xfer_func)
{
case V4L2_XFER_FUNC_DEFAULT:
/* If transfer function is default, the transfer function is
* inferred from the colorspace value for backward compatibility.
* See V4L2 documentation for details. */
break;
case V4L2_XFER_FUNC_709:
es_fmt.video.transfer = TRANSFER_FUNC_BT709;
break;
case V4L2_XFER_FUNC_SRGB:
es_fmt.video.transfer = TRANSFER_FUNC_SRGB;
break;
case V4L2_XFER_FUNC_ADOBERGB:
case V4L2_XFER_FUNC_SMPTE240M:
es_fmt.video.transfer = TRANSFER_FUNC_UNDEF;
break;
case V4L2_XFER_FUNC_NONE:
es_fmt.video.transfer = TRANSFER_FUNC_LINEAR;
break;
case V4L2_XFER_FUNC_DCI_P3:
case V4L2_XFER_FUNC_SMPTE2084:
es_fmt.video.transfer = TRANSFER_FUNC_UNDEF;
break;
default:
msg_Warn (demux, "unknown transfer function %u",
fmt.fmt.pix.xfer_func);
break;
}
msg_Dbg (demux, "YCbCr encoding: %u", fmt.fmt.pix.ycbcr_enc);
switch (fmt.fmt.pix.ycbcr_enc)
{
case V4L2_YCBCR_ENC_DEFAULT:
/* Same as transfer function - use color space value */
break;
case V4L2_YCBCR_ENC_601:
es_fmt.video.space = COLOR_SPACE_BT601;
break;
case V4L2_YCBCR_ENC_709:
es_fmt.video.space = COLOR_SPACE_BT709;
break;
case V4L2_YCBCR_ENC_XV601:
case V4L2_YCBCR_ENC_XV709:
case V4L2_YCBCR_ENC_SYCC:
break;
case V4L2_YCBCR_ENC_BT2020:
es_fmt.video.space = COLOR_SPACE_BT2020;
break;
case V4L2_YCBCR_ENC_BT2020_CONST_LUM:
case V4L2_YCBCR_ENC_SMPTE240M:
break;
default:
msg_Err (demux, "unknown YCbCr encoding: %u",
fmt.fmt.pix.ycbcr_enc);
break;
}
msg_Dbg (demux, "quantization: %u", fmt.fmt.pix.quantization);
switch (fmt.fmt.pix.quantization)
{
case V4L2_QUANTIZATION_DEFAULT:
break;
case V4L2_QUANTIZATION_FULL_RANGE:
es_fmt.video.b_color_range_full = true;
break;
case V4L2_QUANTIZATION_LIM_RANGE:
es_fmt.video.b_color_range_full = false;
break;
default:
msg_Err (demux, "unknown quantization: %u",
fmt.fmt.pix.quantization);
break;
}
msg_Dbg (demux, "added new video ES %4.4s %ux%u (%ux%u)",
(char *)&es_fmt.i_codec,
es_fmt.video.i_visible_width, es_fmt.video.i_visible_height,
es_fmt.video.i_width, es_fmt.video.i_height);
msg_Dbg (demux, " frame rate: %u/%u", es_fmt.video.i_frame_rate,
es_fmt.video.i_frame_rate_base);
msg_Dbg (demux, " aspect ratio: %u/%u", es_fmt.video.i_sar_num,
es_fmt.video.i_sar_den);
sys->es = es_out_Add (demux->out, &es_fmt);
/* Init I/O method */
void *(*entry) (void *);
if (caps & V4L2_CAP_STREAMING)
{
if (0 /* BROKEN */ && StartUserPtr (VLC_OBJECT(demux), fd) == 0)
{
/* In principles, mmap() will pad the length to a multiple of the
* page size, so there is no need to care. Nevertheless with the
* page size, block->i_size can be set optimally. */
const long pagemask = sysconf (_SC_PAGE_SIZE) - 1;
sys->blocksize = (fmt.fmt.pix.sizeimage + pagemask) & ~pagemask;
sys->bufv = NULL;
entry = UserPtrThread;
msg_Dbg (demux, "streaming with %"PRIu32"-bytes user buffers",
sys->blocksize);
}
else /* fall back to memory map */
{
sys->bufc = 4;
sys->bufv = StartMmap (VLC_OBJECT(demux), fd, &sys->bufc);
if (sys->bufv == NULL)
return -1;
entry = MmapThread;
msg_Dbg (demux, "streaming with %"PRIu32" memory-mapped buffers",
sys->bufc);
}
}
else if (caps & V4L2_CAP_READWRITE)
{
sys->blocksize = fmt.fmt.pix.sizeimage;
sys->bufv = NULL;
entry = ReadThread;
msg_Dbg (demux, "reading %"PRIu32" bytes at a time", sys->blocksize);
}
else
{
msg_Err (demux, "no supported capture method");
return -1;
}
#ifdef ZVBI_COMPILED
if (std & V4L2_STD_NTSC_M)
{
char *vbi_path = var_InheritString (demux, CFG_PREFIX"vbidev");
if (vbi_path != NULL)
sys->vbi = OpenVBI (demux, vbi_path);
free(vbi_path);
}
#endif
if (vlc_clone (&sys->thread, entry, demux, VLC_THREAD_PRIORITY_INPUT))
{
#ifdef ZVBI_COMPILED
if (sys->vbi != NULL)
CloseVBI (sys->vbi);
#endif
if (sys->bufv != NULL)
StopMmap (sys->fd, sys->bufv, sys->bufc);
return -1;
}
return 0;
}
void DemuxClose( vlc_object_t *obj )
{
demux_t *demux = (demux_t *)obj;
demux_sys_t *sys = demux->p_sys;
vlc_cancel (sys->thread);
vlc_join (sys->thread, NULL);
if (sys->bufv != NULL)
StopMmap (sys->fd, sys->bufv, sys->bufc);
ControlsDeinit( obj, sys->controls );
v4l2_close (sys->fd);
#ifdef ZVBI_COMPILED
if (sys->vbi != NULL)
CloseVBI (sys->vbi);
#endif
free( sys );
}
/** Allocates and queue a user buffer using mmap(). */
static block_t *UserPtrQueue (vlc_object_t *obj, int fd, size_t length)
{
void *ptr = mmap (NULL, length, PROT_READ | PROT_WRITE,
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
if (ptr == MAP_FAILED)
{
msg_Err (obj, "cannot allocate %zu-bytes buffer: %s", length,
vlc_strerror_c(errno));
return NULL;
}
block_t *block = block_mmap_Alloc (ptr, length);
if (unlikely(block == NULL))
{
munmap (ptr, length);
return NULL;
}
struct v4l2_buffer buf = {
.type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
.memory = V4L2_MEMORY_USERPTR,
.m = {
.userptr = (uintptr_t)ptr,
},
.length = length,
};
if (v4l2_ioctl (fd, VIDIOC_QBUF, &buf) < 0)
{
msg_Err (obj, "cannot queue buffer: %s", vlc_strerror_c(errno));
block_Release (block);
return NULL;
}
return block;
}
static void *UserPtrThread (void *data)
{
demux_t *demux = data;
demux_sys_t *sys = demux->p_sys;
int fd = sys->fd;
struct pollfd ufd[2];
nfds_t numfds = 1;
ufd[0].fd = fd;
ufd[0].events = POLLIN;
int canc = vlc_savecancel ();
for (;;)
{
struct v4l2_buffer buf = {
.type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
.memory = V4L2_MEMORY_USERPTR,
};
block_t *block = UserPtrQueue (VLC_OBJECT(demux), fd, sys->blocksize);
if (block == NULL)
break;
/* Wait for data */
vlc_restorecancel (canc);
block_cleanup_push (block);
while (poll (ufd, numfds, -1) == -1)
if (errno != EINTR)
msg_Err (demux, "poll error: %s", vlc_strerror_c(errno));
vlc_cleanup_pop ();
canc = vlc_savecancel ();
if (v4l2_ioctl (fd, VIDIOC_DQBUF, &buf) < 0)
{
msg_Err (demux, "cannot dequeue buffer: %s",
vlc_strerror_c(errno));
block_Release (block);
continue;
}
assert (block->p_buffer == (void *)buf.m.userptr);
block->i_buffer = buf.length;
block->i_pts = block->i_dts = GetBufferPTS (&buf);
block->i_flags |= sys->block_flags;
es_out_SetPCR(demux->out, block->i_pts);
es_out_Send (demux->out, sys->es, block);
}
vlc_restorecancel (canc); /* <- hmm, this is purely cosmetic */
return NULL;
}
static void *MmapThread (void *data)
{
demux_t *demux = data;
demux_sys_t *sys = demux->p_sys;
int fd = sys->fd;
struct pollfd ufd[2];
nfds_t numfds = 1;
ufd[0].fd = fd;
ufd[0].events = POLLIN;
#ifdef ZVBI_COMPILED
if (sys->vbi != NULL)
{
ufd[1].fd = GetFdVBI (sys->vbi);
ufd[1].events = POLLIN;
numfds++;
}
#endif
for (;;)
{
/* Wait for data */
if (poll (ufd, numfds, -1) == -1)
{
if (errno != EINTR)
msg_Err (demux, "poll error: %s", vlc_strerror_c(errno));
continue;
}
if( ufd[0].revents )
{
int canc = vlc_savecancel ();
block_t *block = GrabVideo (VLC_OBJECT(demux), fd, sys->bufv);
if (block != NULL)
{
block->i_flags |= sys->block_flags;
es_out_SetPCR(demux->out, block->i_pts);
es_out_Send (demux->out, sys->es, block);
}
vlc_restorecancel (canc);
}
#ifdef ZVBI_COMPILED
if (sys->vbi != NULL && ufd[1].revents)
GrabVBI (demux, sys->vbi);
#endif
}
vlc_assert_unreachable ();
}
static void *ReadThread (void *data)
{
demux_t *demux = data;
demux_sys_t *sys = demux->p_sys;
int fd = sys->fd;
struct pollfd ufd[2];
nfds_t numfds = 1;
ufd[0].fd = fd;
ufd[0].events = POLLIN;
#ifdef ZVBI_COMPILED
if (sys->vbi != NULL)
{
ufd[1].fd = GetFdVBI (sys->vbi);
ufd[1].events = POLLIN;
numfds++;
}
#endif
for (;;)
{
/* Wait for data */
if (poll (ufd, numfds, -1) == -1)
{
if (errno != EINTR)
msg_Err (demux, "poll error: %s", vlc_strerror_c(errno));
continue;
}
if( ufd[0].revents )
{
block_t *block = block_Alloc (sys->blocksize);
if (unlikely(block == NULL))
{
msg_Err (demux, "read error: %s", vlc_strerror_c(errno));
v4l2_read (fd, NULL, 0); /* discard frame */
continue;
}
block->i_pts = block->i_dts = mdate ();
block->i_flags |= sys->block_flags;
int canc = vlc_savecancel ();
ssize_t val = v4l2_read (fd, block->p_buffer, block->i_buffer);
if (val != -1)
{
block->i_buffer = val;
es_out_SetPCR(demux->out, block->i_pts);
es_out_Send (demux->out, sys->es, block);
}
else
block_Release (block);
vlc_restorecancel (canc);
}
#ifdef ZVBI_COMPILED
if (sys->vbi != NULL && ufd[1].revents)
GrabVBI (demux, sys->vbi);
#endif
}
vlc_assert_unreachable ();
}
static int DemuxControl( demux_t *demux, int query, va_list args )
{
demux_sys_t *sys = demux->p_sys;
switch( query )
{
/* Special for access_demux */
case DEMUX_CAN_PAUSE:
case DEMUX_CAN_SEEK:
case DEMUX_CAN_CONTROL_PACE:
*va_arg( args, bool * ) = false;
return VLC_SUCCESS;
case DEMUX_GET_PTS_DELAY:
*va_arg(args,int64_t *) = INT64_C(1000)
* var_InheritInteger( demux, "live-caching" );
return VLC_SUCCESS;
case DEMUX_GET_TIME:
*va_arg (args, int64_t *) = mdate() - sys->start;
return VLC_SUCCESS;
/* TODO implement others */
default:
return VLC_EGENERIC;
}
return VLC_EGENERIC;
}
|