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
//! Expert-only knobs for codec calibration and picker training.
//!
//! Anything in this module is **unstable**: it may change in any patch
//! release without semver justification, and is **not part of the
//! public API contract**. Reach for it only when:
//!
//! 1. Sweeping parameter combinations to feed a picker / regression /
//! calibration training pipeline.
//! 2. Diagnosing codec behaviour by overriding speed-preset defaults.
//! 3. Wiring a future `predict` feature that selects [`InternalParams`]
//! via a baked MLP.
//!
//! Everything in here lives behind the `__expert` cargo feature, whose
//! double-underscore signals "private — do not depend on this in
//! production code." Default builds expose only stable public knobs
//! ([`crate::EncoderConfig::quality`], [`crate::EncoderConfig::speed`],
//! etc.).
//!
//! # Where the overrides land
//!
//! [`InternalParams`] is a thin mirror of
//! [`zenravif::expert::InternalParams`]. Fields fan out one-to-one
//! through `build_ravif_encoder()` in `src/encoder.rs`, which builds a
//! `zenravif::expert::InternalParams` and forwards it via
//! `zenravif::Encoder::with_internal_params`. From there each `Some(_)`
//! replaces the value the AV1 speed preset would have picked, **after**
//! `zenrav1e::prelude::SpeedSettings::from_preset` and **after**
//! zenravif's own preset overrides in `SpeedTweaks::from_my_preset`.
//! `None` falls through to whatever the preset chose. Apply via
//! [`crate::EncoderConfig::with_internal_params`]; the call replaces
//! *all* four fields wholesale, so reset by passing
//! `InternalParams::default()`.
//!
//! For the underlying mechanism, source citations into zenrav1e, and
//! the speed-preset gating tables, see
//! [`zenravif::expert::InternalParams`] (which the zenavif wrapper
//! forwards to verbatim).
/// Expert override knobs for the AVIF encoder.
///
/// Each field is `Option<T>`: `None` (the [`Default`]) keeps the speed
/// preset's value, `Some(_)` overrides it. Apply via
/// [`crate::EncoderConfig::with_internal_params`].
///
/// `#[non_exhaustive]` — fields may be added in any patch release.
/// Construct via [`Default::default`] and field-by-field assignment;
/// callers cannot use struct-literal syntax outside this crate.
///
/// Forwards to [`zenravif::expert::InternalParams`]; consult that
/// type's docs for source-line citations into the underlying
/// zenrav1e encoder.
///
/// # Example
///
/// ```ignore
/// # #[cfg(feature = "__expert")] {
/// use zenavif::{EncoderConfig, expert::InternalParams};
///
/// let mut params = InternalParams::default();
/// params.partition_range = Some((4, 16));
/// params.lrf = Some(false);
///
/// let config = EncoderConfig::new()
/// .quality(85.0)
/// .speed(6)
/// .with_internal_params(params);
/// # }
/// ```