요약·해설과 원문, 전문 번역을 서로 분리했습니다. 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-cs8:
5
*************************
6
V4L2_SDR_FMT_CS8 ('CS08')
7
*************************
9
Complex signed 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 signed number. I value comes first and
18
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은 원문 표기를 유지합니다.
복소 signed 8-bit IQ 표본
1-30`V4L2_SDR_FMT_CS8` (`CS08`)은 복소수 표본의 연속을 저장합니다. 복소수 하나는 동상(In-phase, I)과 직교(Quadrature, Q) 두 부분으로 구성되며 I와 Q 모두 8-bit signed number입니다.
표본마다 I 값이 먼저 오고 Q 값이 뒤따릅니다. 각 cell은 1 byte이므로 복소 표본 하나는 연속된 2 byte를 차지합니다.
위치Byte 배치 / 의미
start + 0I'0: signed 8-bit I
start + 1Q'0: signed 8-bit Q
`start`는 복소 표본 하나의 시작 주소입니다.
.. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
.. _v4l2-sdr-fmt-cs8:
*************************
V4L2_SDR_FMT_CS8 ('CS08')
*************************
Complex signed 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 signed 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-cs08.rst:1-30I와 Q가 각각 signed 8 bit이며 I 다음 Q가 오는 2-byte 복소 표본입니다.