요약·해설과 원문, 전문 번역을 서로 분리했습니다. 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-CS14LE:
5
****************************
6
V4L2_SDR_FMT_CS14LE ('CS14')
7
****************************
9
Complex signed 14-bit little endian IQ sample
12
Description
13
===========
15
This format contains sequence of complex number samples. Each complex
16
number consist two parts, called In-phase and Quadrature (IQ). Both I
17
and Q are represented as a 14 bit signed little endian number. I value
18
comes first and Q value after that. 14 bit value is stored in 16 bit
19
space with unused high bits padded with 0.
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[13:8]`
32
* - start + 2:
33
- Q'\ :sub:`0[7:0]`
34
- Q'\ :sub:`0[13:8]`
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
복소 signed 14-bit little-endian IQ 표본
1-34`V4L2_SDR_FMT_CS14LE` (`CS14`)은 복소수 표본의 I와 Q를 각각 14-bit signed little-endian number로 표현합니다. I 값이 먼저 오고 Q 값이 그 뒤를 따릅니다.
14-bit 값 하나는 16-bit 공간에 저장하며 사용하지 않는 상위 bit는 0으로 채웁니다. 따라서 I와 Q가 각각 2 byte이고 복소 표본 하나는 4 byte입니다.
위치Byte 배치 / 의미
start + 0I'0[7:0], I'0[13:8]
start + 2Q'0[7:0], Q'0[13:8]
낮은 8 bit가 먼저 저장되는 little-endian 배치입니다.
.. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
.. _V4L2-SDR-FMT-CS14LE:
****************************
V4L2_SDR_FMT_CS14LE ('CS14')
****************************
Complex signed 14-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 14 bit signed little endian number. I value
comes first and Q value after that. 14 bit value is stored in 16 bit
space with unused high bits padded with 0.
**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[13:8]`
* - start + 2:
- Q'\ :sub:`0[7:0]`
- Q'\ :sub:`0[13:8]`
요약·해설
pixfmt-sdr-cs14le.rst:1-34I와 Q를 각각 little-endian 16-bit slot에 넣고 사용하지 않는 상위 2 bit를 0으로 채웁니다.