요약·해설과 원문, 전문 번역을 서로 분리했습니다. 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-cu8:
5
*************************
6
V4L2_SDR_FMT_CU8 ('CU08')
7
*************************
9
Complex unsigned 8-bit 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 8 bit unsigned number. I value comes first
18
and Q value after that.
20
**Byte Order.**
21
Each cell is one byte.
23
.. flat-table::
24
:header-rows: 0
25
:stub-columns: 0
27
* - start + 0:
28
- I'\ :sub:`0`
29
* - start + 1:
30
- Q'\ :sub:`0`
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
복소 unsigned 8-bit IQ 표본
1-30`V4L2_SDR_FMT_CU8` (`CU08`)은 복소수 표본의 연속을 저장합니다. 표본 하나는 동상 I와 직교 Q로 구성되고 두 값 모두 8-bit unsigned number입니다.
I가 먼저, Q가 다음에 오며 각 cell은 1 byte입니다. 따라서 복소 표본 하나의 저장 크기는 2 byte입니다.
위치Byte 배치 / 의미
start + 0I'0: unsigned 8-bit I
start + 1Q'0: unsigned 8-bit Q
`start`부터 I와 Q를 차례로 읽습니다.
.. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
.. _v4l2-sdr-fmt-cu8:
*************************
V4L2_SDR_FMT_CU8 ('CU08')
*************************
Complex unsigned 8-bit 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 8 bit unsigned 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`
* - start + 1:
- Q'\ :sub:`0`
요약·해설
pixfmt-sdr-cu08.rst:1-30I와 Q가 각각 unsigned 8 bit이며 I 다음 Q가 오는 2-byte 복소 표본입니다.