요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
.. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
3
.. _V4L2-SDR-FMT-CU16LE:
5
****************************
6
V4L2_SDR_FMT_CU16LE ('CU16')
7
****************************
10
Complex unsigned 16-bit little endian IQ sample
13
Description
14
===========
16
This format contains sequence of complex number samples. Each complex
17
number consist two parts, called In-phase and Quadrature (IQ). Both I
18
and Q are represented as a 16 bit unsigned little endian number. I value
19
comes first and Q value after that.
21
**Byte Order.**
22
Each cell is one byte.
25
.. flat-table::
26
:header-rows: 0
27
:stub-columns: 0
29
* - start + 0:
30
- I'\ :sub:`0[7:0]`
31
- I'\ :sub:`0[15:8]`
32
* - start + 2:
33
- Q'\ :sub:`0[7:0]`
34
- Q'\ :sub:`0[15:8]`
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
복소 unsigned 16-bit little-endian IQ 표본
1-34`V4L2_SDR_FMT_CU16LE` (`CU16`)은 I와 Q를 각각 16-bit unsigned little-endian number로 저장합니다. I 값의 2 byte가 먼저 오고 Q 값의 2 byte가 뒤따릅니다.
각 cell은 1 byte이며 복소 표본 하나는 총 4 byte입니다. 각 성분 안에서는 낮은 byte가 높은 byte보다 앞에 옵니다.
위치Byte 배치 / 의미
start + 0I'0[7:0], I'0[15:8]
start + 2Q'0[7:0], Q'0[15:8]
각 16-bit 성분의 low byte와 high byte 순서입니다.
.. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
.. _V4L2-SDR-FMT-CU16LE:
****************************
V4L2_SDR_FMT_CU16LE ('CU16')
****************************
Complex unsigned 16-bit little endian IQ sample
Description
===========
This format contains sequence of complex number samples. Each complex
number consist two parts, called In-phase and Quadrature (IQ). Both I
and Q are represented as a 16 bit unsigned little endian number. I value
comes first and Q value after that.
**Byte Order.**
Each cell is one byte.
.. flat-table::
:header-rows: 0
:stub-columns: 0
* - start + 0:
- I'\ :sub:`0[7:0]`
- I'\ :sub:`0[15:8]`
* - start + 2:
- Q'\ :sub:`0[7:0]`
- Q'\ :sub:`0[15:8]`
요약·해설
pixfmt-sdr-cu16le.rst:1-34I와 Q가 각각 2 byte이며 각 성분의 low byte가 먼저 저장됩니다.