vesper-player-plugin 0.5.1

Safe Rust author SDK for Vesper native plugins.
Documentation
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
use serde::{Deserialize, Serialize};
use thiserror::Error;

use crate::{
    NativeFrame, NativeFrameColorMetadata, NativeFrameHdrMetadata, NativeFrameLeaseToken,
    NativeFrameMetadata, NativeFramePipelineProfile, NativeFrameReleaseTracking,
    NativeFrameSyncInfo, NativeFrameTransform, NativeHandleKind, SourceNormalizerPacketMediaKind,
    SourceNormalizerPacketTrackInfo, VisibleRect,
};

/// Media kind handled by a decoder plugin.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default, Serialize, Deserialize)]
pub enum DecoderMediaKind {
    #[default]
    Video,
    Audio,
}

/// Decoded frame formats advertised by decoder plugins.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum DecoderFrameFormat {
    Rgba8888,
    Bgra8888,
    Yuv420p,
    Nv12,
    /// 10-bit 4:2:0 bi-planar YUV, commonly exposed as P010.
    P010,
    /// IEEE 754 binary32 PCM samples, encoded little-endian in `DecoderPcmFrame::data`.
    F32,
    /// Signed 16-bit PCM samples, encoded little-endian in `DecoderPcmFrame::data`.
    S16,
    Unknown(String),
}

/// PCM sample layout returned by audio decoder plugins.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default, Serialize, Deserialize)]
pub enum DecoderPcmSampleLayout {
    #[default]
    Interleaved,
    Planar,
}

/// Describes one codec a decoder plugin can open.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct DecoderCodecCapability {
    pub codec: String,
    pub media_kind: DecoderMediaKind,
    pub profiles: Vec<String>,
    pub output_formats: Vec<DecoderFrameFormat>,
}

/// Decoder plugin capability payload returned through the dynamic ABI.
#[derive(Debug, Clone, PartialEq, Eq, Default, Serialize, Deserialize)]
pub struct DecoderCapabilities {
    pub codecs: Vec<DecoderCodecCapability>,
    pub supports_hardware_decode: bool,
    pub supports_cpu_video_frames: bool,
    /// Supports decoded audio frames in plugin-managed audio sessions.
    pub supports_audio_frames: bool,
    /// Supports decoded PCM frame output through `receive_pcm_frame`.
    #[serde(default)]
    pub supports_pcm_frames: bool,
    pub supports_gpu_handles: bool,
    /// Supports release calls that distinguish presented frames from discarded frames.
    #[serde(default)]
    pub supports_presentation_release: bool,
    pub supports_flush: bool,
    pub supports_drain: bool,
    pub max_sessions: Option<u32>,
}

impl DecoderCapabilities {
    /// Returns whether this plugin advertises support for a codec/media pair.
    pub fn supports_codec(&self, codec: &str, media_kind: DecoderMediaKind) -> bool {
        let codec = normalize_decoder_codec_identifier(codec);
        self.codecs.iter().any(|capability| {
            capability.media_kind == media_kind
                && normalize_decoder_codec_identifier(&capability.codec) == codec
        })
    }
}

/// Normalizes MIME-wrapped and profile-qualified decoder codec identifiers.
///
/// Profile suffix removal is intentionally limited to standardized sample
/// entry identifiers. Custom codec names retain dots so unrelated identities
/// cannot collapse onto the same capability.
pub fn normalize_decoder_codec_identifier(codec: &str) -> String {
    let normalized = codec.trim().to_ascii_lowercase();
    let normalized = normalized
        .strip_prefix("video/")
        .or_else(|| normalized.strip_prefix("audio/"))
        .unwrap_or(&normalized);
    let Some((sample_entry, _profile)) = normalized.split_once('.') else {
        return normalized.to_owned();
    };
    if matches!(
        sample_entry,
        "avc1" | "avc3" | "hvc1" | "hev1" | "dvh1" | "dvhe" | "vp09" | "av01" | "mp4a"
    ) {
        sample_entry.to_owned()
    } else {
        normalized.to_owned()
    }
}

/// Requirements a host session needs from a decoder plugin.
#[derive(Debug, Clone, PartialEq, Eq, Default, Serialize, Deserialize)]
pub struct DecoderSessionRequirements {
    pub codec: String,
    pub media_kind: DecoderMediaKind,
    #[serde(default)]
    pub native_handle_kind: Option<DecoderNativeHandleKind>,
    #[serde(default)]
    pub pipeline_profile: Option<NativeFramePipelineProfile>,
    #[serde(default)]
    pub native_device_context_kind: Option<DecoderNativeDeviceContextKind>,
    #[serde(default)]
    pub require_presentation_release: bool,
    #[serde(default)]
    pub require_pcm_output: bool,
}

impl DecoderSessionRequirements {
    /// Builds video native-frame requirements for an output handle/profile pair.
    pub fn native_video(
        codec: impl Into<String>,
        native_handle_kind: DecoderNativeHandleKind,
        pipeline_profile: NativeFramePipelineProfile,
    ) -> Self {
        Self {
            codec: codec.into(),
            media_kind: DecoderMediaKind::Video,
            native_handle_kind: Some(native_handle_kind),
            pipeline_profile: Some(pipeline_profile),
            ..Self::default()
        }
    }

    /// Returns missing capability names for this requirement.
    pub fn missing_capabilities(
        &self,
        capabilities: &DecoderCapabilities,
        native_requirements: &DecoderNativeRequirements,
    ) -> Vec<String> {
        let mut missing = Vec::new();
        if !capabilities.supports_codec(&self.codec, self.media_kind) {
            missing.push(format!("{:?} codec {}", self.media_kind, self.codec));
        }
        if self.require_pcm_output && !capabilities.supports_pcm_frames {
            missing.push("supportsPcmFrames".to_owned());
        }
        if self.require_presentation_release && !capabilities.supports_presentation_release {
            missing.push("supportsPresentationRelease".to_owned());
        }
        if let Some(handle_kind) = &self.native_handle_kind
            && !native_requirements
                .output_handle_kinds
                .contains(handle_kind)
        {
            missing.push(format!("outputHandleKind::{handle_kind:?}"));
        }
        if let Some(profile) = &self.pipeline_profile
            && !native_requirements
                .output_pipeline_profiles
                .contains(profile)
        {
            missing.push(format!("pipelineProfile::{profile:?}"));
        }
        if let Some(context_kind) = &self.native_device_context_kind
            && !native_requirements
                .required_device_context_kinds
                .contains(context_kind)
        {
            missing.push(format!("nativeDeviceContext::{context_kind:?}"));
        }
        missing
    }
}

/// Configuration used to open a decoder session.
#[derive(Debug, Clone, PartialEq, Eq, Default, Serialize, Deserialize)]
pub struct DecoderSessionConfig {
    pub codec: String,
    pub media_kind: DecoderMediaKind,
    pub extradata: Vec<u8>,
    #[serde(default)]
    pub bitstream_format: Option<DecoderBitstreamFormat>,
    pub width: Option<u32>,
    pub height: Option<u32>,
    #[serde(default)]
    pub coded_width: Option<u32>,
    #[serde(default)]
    pub coded_height: Option<u32>,
    #[serde(default)]
    pub reorder_depth: Option<u32>,
    pub sample_rate: Option<u32>,
    pub channels: Option<u16>,
    #[serde(default)]
    pub channel_layout: Option<String>,
    #[serde(default)]
    pub target_pcm_format: Option<DecoderFrameFormat>,
    #[serde(default)]
    pub target_pcm_sample_layout: Option<DecoderPcmSampleLayout>,
    #[serde(default)]
    pub codec_delay_samples: Option<u32>,
    #[serde(default)]
    pub priming_samples: Option<u32>,
    #[serde(default)]
    pub trailing_padding_samples: Option<u32>,
    #[serde(default)]
    pub seek_preroll_samples: Option<u32>,
    pub prefer_hardware: bool,
    /// Platform decoder implementation selected by a trusted host capability probe.
    #[serde(default)]
    pub required_decoder_implementation_name: Option<String>,
    pub require_cpu_output: bool,
    #[serde(default)]
    pub native_device_context: Option<DecoderNativeDeviceContext>,
    #[serde(default)]
    pub color: Option<NativeFrameColorMetadata>,
    #[serde(default)]
    pub hdr: Option<NativeFrameHdrMetadata>,
}

impl DecoderSessionConfig {
    /// Builds an audio decoder session config from a SourceNormalizer audio track.
    pub fn audio_from_source_normalizer_track(
        track: &SourceNormalizerPacketTrackInfo,
        target_pcm_format: DecoderFrameFormat,
        target_pcm_sample_layout: DecoderPcmSampleLayout,
    ) -> Result<Self, DecoderError> {
        if track.media_kind != SourceNormalizerPacketMediaKind::Audio {
            return Err(DecoderError::UnsupportedCapability {
                capability: "source-normalizer-audio-track".to_owned(),
            });
        }
        Ok(Self {
            codec: track.codec.clone(),
            media_kind: DecoderMediaKind::Audio,
            extradata: track.extradata.clone(),
            bitstream_format: track.bitstream_format.clone(),
            sample_rate: track.sample_rate,
            channels: track.channels,
            channel_layout: track.channel_layout.clone(),
            target_pcm_format: Some(target_pcm_format),
            target_pcm_sample_layout: Some(target_pcm_sample_layout),
            codec_delay_samples: track.codec_delay_samples,
            priming_samples: track.priming_samples,
            trailing_padding_samples: track.trailing_padding_samples,
            seek_preroll_samples: track.seek_preroll_samples,
            color: track.color.clone(),
            hdr: track.hdr.clone(),
            prefer_hardware: true,
            require_cpu_output: true,
            ..Self::default()
        })
    }

    /// Builds the default Apple PCM output preference for native audio.
    pub fn apple_native_audio_from_source_normalizer_track(
        track: &SourceNormalizerPacketTrackInfo,
    ) -> Result<Self, DecoderError> {
        Self::audio_from_source_normalizer_track(
            track,
            DecoderFrameFormat::F32,
            DecoderPcmSampleLayout::Interleaved,
        )
    }
}

/// Optional session metadata returned by a plugin after opening a decoder.
#[derive(Debug, Clone, PartialEq, Eq, Default, Serialize, Deserialize)]
pub struct DecoderSessionInfo {
    pub decoder_name: Option<String>,
    pub selected_hardware_backend: Option<String>,
    pub output_format: Option<DecoderFrameFormat>,
}

/// Compressed packet metadata passed to `NativeDecoderSession::send_packet`.
#[derive(Debug, Clone, PartialEq, Eq, Default, Serialize, Deserialize)]
pub struct DecoderPacket {
    pub pts_us: Option<i64>,
    pub dts_us: Option<i64>,
    pub duration_us: Option<i64>,
    pub stream_index: u32,
    #[serde(default)]
    pub media_kind: DecoderMediaKind,
    pub key_frame: bool,
    pub discontinuity: bool,
    #[serde(default)]
    pub end_of_stream: bool,
}

impl TryFrom<crate::SourceNormalizerPacket> for DecoderPacket {
    type Error = DecoderError;

    fn try_from(packet: crate::SourceNormalizerPacket) -> Result<Self, Self::Error> {
        let media_kind = match packet.media_kind {
            SourceNormalizerPacketMediaKind::Audio => DecoderMediaKind::Audio,
            SourceNormalizerPacketMediaKind::Video => DecoderMediaKind::Video,
            SourceNormalizerPacketMediaKind::Subtitle => {
                return Err(DecoderError::UnsupportedCapability {
                    capability: "source-normalizer-subtitle-packet".to_owned(),
                });
            }
        };
        Ok(Self {
            pts_us: packet.pts_us,
            dts_us: packet.dts_us,
            duration_us: packet.duration_us,
            stream_index: packet.stream_index,
            media_kind,
            key_frame: packet.key_frame,
            discontinuity: packet.discontinuity,
            end_of_stream: packet.end_of_stream,
        })
    }
}

/// Result returned after sending one compressed packet.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct DecoderPacketResult {
    pub accepted: bool,
}

impl Default for DecoderPacketResult {
    fn default() -> Self {
        Self { accepted: true }
    }
}

/// Receive state encoded in frame metadata over the C ABI.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum DecoderReceiveFrameStatus {
    Frame,
    NeedMoreInput,
    Eof,
}

/// Native frame handle kinds returned by the decoder plugin ABI.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum DecoderNativeHandleKind {
    CvPixelBuffer,
    IoSurface,
    MetalTexture,
    DmaBuf,
    VaapiSurface,
    D3D11Texture2D,
    DxgiSurface,
    VulkanImage,
    MediaCodecHardwareBuffer,
    MediaCodecSurfaceTexture,
    Unknown(String),
}

impl From<DecoderNativeHandleKind> for NativeHandleKind {
    fn from(value: DecoderNativeHandleKind) -> Self {
        match value {
            DecoderNativeHandleKind::CvPixelBuffer => Self::CvPixelBuffer,
            DecoderNativeHandleKind::IoSurface => Self::IoSurface,
            DecoderNativeHandleKind::MetalTexture => Self::MetalTexture,
            DecoderNativeHandleKind::DmaBuf => Self::DmaBuf,
            DecoderNativeHandleKind::VaapiSurface => Self::VaapiSurface,
            DecoderNativeHandleKind::D3D11Texture2D => Self::D3D11Texture2D,
            DecoderNativeHandleKind::DxgiSurface => Self::DxgiSurface,
            DecoderNativeHandleKind::VulkanImage => Self::VulkanImage,
            DecoderNativeHandleKind::MediaCodecHardwareBuffer => Self::MediaCodecHardwareBuffer,
            DecoderNativeHandleKind::MediaCodecSurfaceTexture => Self::MediaCodecSurfaceTexture,
            DecoderNativeHandleKind::Unknown(name) => Self::Unknown(name),
        }
    }
}

impl From<NativeHandleKind> for DecoderNativeHandleKind {
    fn from(value: NativeHandleKind) -> Self {
        match value {
            NativeHandleKind::CvPixelBuffer => Self::CvPixelBuffer,
            NativeHandleKind::IoSurface => Self::IoSurface,
            NativeHandleKind::MetalTexture => Self::MetalTexture,
            NativeHandleKind::DmaBuf => Self::DmaBuf,
            NativeHandleKind::VaapiSurface => Self::VaapiSurface,
            NativeHandleKind::D3D11Texture2D => Self::D3D11Texture2D,
            NativeHandleKind::DxgiSurface => Self::DxgiSurface,
            NativeHandleKind::VulkanImage => Self::VulkanImage,
            NativeHandleKind::MediaCodecHardwareBuffer => Self::MediaCodecHardwareBuffer,
            NativeHandleKind::MediaCodecSurfaceTexture => Self::MediaCodecSurfaceTexture,
            NativeHandleKind::Unknown(name) => Self::Unknown(name),
        }
    }
}

/// Native graphics device/context kinds that a host may share with a decoder plugin.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum DecoderNativeDeviceContextKind {
    D3D11Device,
    AndroidNativeWindow,
    Unknown(String),
}

/// Compressed video bitstream representation expected by a native decoder.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum DecoderBitstreamFormat {
    AnnexB,
    Avcc,
    Hvcc,
    Unknown(String),
}

/// Borrowed native device/context pointer passed from host to decoder plugin.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(tag = "kind", rename_all = "snake_case")]
pub enum DecoderNativeDeviceContext {
    #[serde(rename = "d3d11_device")]
    D3D11Device {
        device_ptr: usize,
    },
    #[serde(rename = "android_native_window")]
    AndroidNativeWindow {
        window_ptr: usize,
    },
    Unknown {
        name: String,
    },
}

impl DecoderNativeDeviceContext {
    pub fn kind(&self) -> DecoderNativeDeviceContextKind {
        match self {
            Self::D3D11Device { .. } => DecoderNativeDeviceContextKind::D3D11Device,
            Self::AndroidNativeWindow { .. } => DecoderNativeDeviceContextKind::AndroidNativeWindow,
            Self::Unknown { name } => DecoderNativeDeviceContextKind::Unknown(name.clone()),
        }
    }

    pub fn d3d11_device_ptr(&self) -> Option<usize> {
        match self {
            Self::D3D11Device { device_ptr } => Some(*device_ptr),
            Self::AndroidNativeWindow { .. } | Self::Unknown { .. } => None,
        }
    }

    pub fn android_native_window_ptr(&self) -> Option<usize> {
        match self {
            Self::AndroidNativeWindow { window_ptr } => Some(*window_ptr),
            Self::D3D11Device { .. } | Self::Unknown { .. } => None,
        }
    }
}

/// Native-frame decoder requirements advertised through the plugin ABI.
#[derive(Debug, Clone, PartialEq, Eq, Default, Serialize, Deserialize)]
pub struct DecoderNativeRequirements {
    pub required_device_context_kinds: Vec<DecoderNativeDeviceContextKind>,
    pub output_handle_kinds: Vec<DecoderNativeHandleKind>,
    #[serde(default)]
    pub output_pipeline_profiles: Vec<NativeFramePipelineProfile>,
    pub requires_native_device_context: bool,
    pub accepted_bitstream_formats: Vec<DecoderBitstreamFormat>,
}

/// Visible content rectangle within a coded native frame.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct DecoderVisibleRect {
    pub x: u32,
    pub y: u32,
    pub width: u32,
    pub height: u32,
}

impl From<DecoderVisibleRect> for VisibleRect {
    fn from(value: DecoderVisibleRect) -> Self {
        Self {
            x: value.x,
            y: value.y,
            width: value.width,
            height: value.height,
        }
    }
}

impl From<VisibleRect> for DecoderVisibleRect {
    fn from(value: VisibleRect) -> Self {
        Self {
            x: value.x,
            y: value.y,
            width: value.width,
            height: value.height,
        }
    }
}

/// Release tracking diagnostics attached to a native frame.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct DecoderNativeFrameReleaseTracking {
    pub frame_id: Option<u64>,
    pub requires_release: bool,
}

impl From<DecoderNativeFrameReleaseTracking> for NativeFrameReleaseTracking {
    fn from(value: DecoderNativeFrameReleaseTracking) -> Self {
        Self {
            frame_id: value.frame_id,
            requires_release: value.requires_release,
        }
    }
}

impl From<NativeFrameReleaseTracking> for DecoderNativeFrameReleaseTracking {
    fn from(value: NativeFrameReleaseTracking) -> Self {
        Self {
            frame_id: value.frame_id,
            requires_release: value.requires_release,
        }
    }
}

/// Metadata for a decoded native frame. The native handle is transferred separately.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct DecoderNativeFrameMetadata {
    pub media_kind: DecoderMediaKind,
    pub format: DecoderFrameFormat,
    pub codec: String,
    pub pts_us: Option<i64>,
    pub duration_us: Option<i64>,
    pub width: u32,
    pub height: u32,
    #[serde(default)]
    pub coded_width: Option<u32>,
    #[serde(default)]
    pub coded_height: Option<u32>,
    #[serde(default)]
    pub visible_rect: Option<DecoderVisibleRect>,
    pub handle_kind: DecoderNativeHandleKind,
    #[serde(default)]
    pub pipeline_profile: Option<NativeFramePipelineProfile>,
    #[serde(default)]
    pub color_space: Option<String>,
    #[serde(default)]
    pub hdr_metadata: Option<String>,
    #[serde(default)]
    pub color: Option<NativeFrameColorMetadata>,
    #[serde(default)]
    pub hdr: Option<NativeFrameHdrMetadata>,
    #[serde(default)]
    pub sync_info: Option<NativeFrameSyncInfo>,
    #[serde(default)]
    pub transform: Option<NativeFrameTransform>,
    #[serde(default)]
    pub frame_id: Option<u64>,
    #[serde(default)]
    pub release_tracking: Option<DecoderNativeFrameReleaseTracking>,
}

impl From<DecoderNativeFrameMetadata> for NativeFrameMetadata {
    fn from(value: DecoderNativeFrameMetadata) -> Self {
        Self {
            media_kind: value.media_kind,
            format: value.format,
            codec: value.codec,
            pts_us: value.pts_us,
            duration_us: value.duration_us,
            width: value.width,
            height: value.height,
            coded_width: value.coded_width,
            coded_height: value.coded_height,
            visible_rect: value.visible_rect.map(Into::into),
            handle_kind: value.handle_kind.into(),
            pipeline_profile: value.pipeline_profile,
            color_space: value.color_space,
            hdr_metadata: value.hdr_metadata,
            color: value.color,
            hdr: value.hdr,
            sync_info: value.sync_info,
            transform: value.transform,
            frame_id: value.frame_id,
            release_tracking: value.release_tracking.map(Into::into),
        }
    }
}

impl From<NativeFrameMetadata> for DecoderNativeFrameMetadata {
    fn from(value: NativeFrameMetadata) -> Self {
        Self {
            media_kind: value.media_kind,
            format: value.format,
            codec: value.codec,
            pts_us: value.pts_us,
            duration_us: value.duration_us,
            width: value.width,
            height: value.height,
            coded_width: value.coded_width,
            coded_height: value.coded_height,
            visible_rect: value.visible_rect.map(Into::into),
            handle_kind: value.handle_kind.into(),
            pipeline_profile: value.pipeline_profile,
            color_space: value.color_space,
            hdr_metadata: value.hdr_metadata,
            color: value.color,
            hdr: value.hdr,
            sync_info: value.sync_info,
            transform: value.transform,
            frame_id: value.frame_id,
            release_tracking: value.release_tracking.map(Into::into),
        }
    }
}

/// A decoded native frame returned by the Rust-side decoder session trait.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct DecoderNativeFrame {
    pub metadata: DecoderNativeFrameMetadata,
    pub handle: usize,
    #[doc(hidden)]
    pub lease_token: Option<NativeFrameLeaseToken>,
}

impl From<DecoderNativeFrame> for NativeFrame {
    fn from(value: DecoderNativeFrame) -> Self {
        Self {
            metadata: value.metadata.into(),
            handle: value.handle,
            lease_token: value.lease_token,
        }
    }
}

impl From<NativeFrame> for DecoderNativeFrame {
    fn from(value: NativeFrame) -> Self {
        Self {
            metadata: value.metadata.into(),
            handle: value.handle,
            lease_token: value.lease_token,
        }
    }
}

/// Metadata returned by the dynamic native-frame receive call.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct DecoderReceiveNativeFrameMetadata {
    pub status: DecoderReceiveFrameStatus,
    pub frame: Option<DecoderNativeFrameMetadata>,
}

impl DecoderReceiveNativeFrameMetadata {
    pub fn frame(frame: DecoderNativeFrameMetadata) -> Self {
        Self {
            status: DecoderReceiveFrameStatus::Frame,
            frame: Some(frame),
        }
    }

    pub fn need_more_input() -> Self {
        Self {
            status: DecoderReceiveFrameStatus::NeedMoreInput,
            frame: None,
        }
    }

    pub fn eof() -> Self {
        Self {
            status: DecoderReceiveFrameStatus::Eof,
            frame: None,
        }
    }
}

/// Rust-side receive result returned by native decoder sessions.
#[allow(
    clippy::large_enum_variant,
    reason = "boxing Frame would break the public decoder session API"
)]
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum DecoderReceiveNativeFrameOutput {
    Frame(DecoderNativeFrame),
    NeedMoreInput,
    Eof,
}

/// Metadata for a decoded PCM audio frame.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct DecoderPcmFrameMetadata {
    pub media_kind: DecoderMediaKind,
    pub format: DecoderFrameFormat,
    pub codec: String,
    pub pts_us: Option<i64>,
    pub duration_us: Option<i64>,
    pub sample_rate: u32,
    pub channels: u16,
    #[serde(default)]
    pub channel_layout: Option<String>,
    pub sample_layout: DecoderPcmSampleLayout,
    pub frame_count: u32,
    #[serde(default)]
    pub discontinuity: bool,
}

impl DecoderPcmFrameMetadata {
    /// Creates PCM metadata and pins `media_kind` to audio.
    pub fn audio(
        codec: impl Into<String>,
        format: DecoderFrameFormat,
        sample_rate: u32,
        channels: u16,
        sample_layout: DecoderPcmSampleLayout,
        frame_count: u32,
    ) -> Self {
        Self {
            media_kind: DecoderMediaKind::Audio,
            format,
            codec: codec.into(),
            pts_us: None,
            duration_us: None,
            sample_rate,
            channels,
            channel_layout: None,
            sample_layout,
            frame_count,
            discontinuity: false,
        }
    }

    /// Validates the metadata before it crosses the decoder/session boundary.
    pub fn validate(&self) -> Result<usize, DecoderError> {
        if self.media_kind != DecoderMediaKind::Audio {
            return Err(DecoderError::InvalidPacket {
                message: "PCM frame media kind must be audio".to_owned(),
            });
        }
        if self.codec.trim().is_empty() {
            return Err(DecoderError::InvalidPacket {
                message: "PCM frame codec must not be empty".to_owned(),
            });
        }
        let bytes_per_sample = match self.format {
            DecoderFrameFormat::F32 => 4,
            DecoderFrameFormat::S16 => 2,
            ref format => {
                return Err(DecoderError::UnsupportedCapability {
                    capability: format!("pcm-format::{format:?}"),
                });
            }
        };
        if self.sample_rate == 0 || self.channels == 0 || self.frame_count == 0 {
            return Err(DecoderError::InvalidPacket {
                message: "PCM frame sample rate, channels, and frame count must be non-zero"
                    .to_owned(),
            });
        }
        if self.duration_us.is_some_and(|duration| duration < 0) {
            return Err(DecoderError::InvalidPacket {
                message: "PCM frame duration must not be negative".to_owned(),
            });
        }
        usize::try_from(self.frame_count)
            .ok()
            .and_then(|frames| frames.checked_mul(usize::from(self.channels)))
            .and_then(|samples| samples.checked_mul(bytes_per_sample))
            .ok_or_else(|| DecoderError::InvalidPacket {
                message: "PCM frame payload length overflows host size".to_owned(),
            })
    }
}

/// A decoded PCM audio frame returned by an audio decoder session.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct DecoderPcmFrame {
    pub metadata: DecoderPcmFrameMetadata,
    /// PCM sample bytes in the declared layout. F32 and S16 samples are always little-endian.
    pub data: Vec<u8>,
}

impl DecoderPcmFrame {
    /// Validates metadata and the owned PCM payload length.
    pub fn validate(&self) -> Result<(), DecoderError> {
        let expected_len = self.metadata.validate()?;
        if self.data.len() != expected_len {
            return Err(DecoderError::InvalidPacket {
                message: format!(
                    "PCM frame payload length {} does not match expected {}",
                    self.data.len(),
                    expected_len
                ),
            });
        }
        Ok(())
    }
}

/// Receive state encoded in PCM frame metadata over the future audio decoder ABI.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct DecoderReceivePcmFrameMetadata {
    pub status: DecoderReceiveFrameStatus,
    pub frame: Option<DecoderPcmFrameMetadata>,
}

impl DecoderReceivePcmFrameMetadata {
    pub fn frame(frame: DecoderPcmFrameMetadata) -> Self {
        Self {
            status: DecoderReceiveFrameStatus::Frame,
            frame: Some(frame),
        }
    }

    pub fn need_more_input() -> Self {
        Self {
            status: DecoderReceiveFrameStatus::NeedMoreInput,
            frame: None,
        }
    }

    pub fn eof() -> Self {
        Self {
            status: DecoderReceiveFrameStatus::Eof,
            frame: None,
        }
    }
}

/// Rust-side receive result returned by audio decoder sessions.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum DecoderReceivePcmFrameOutput {
    Frame(DecoderPcmFrame),
    NeedMoreInput,
    Eof,
}

/// Empty success payload used by flush/close operations.
#[derive(Debug, Clone, PartialEq, Eq, Default, Serialize, Deserialize)]
pub struct DecoderOperationStatus {
    pub completed: bool,
}

/// Error payload shared by decoder plugins and host-side adapters.
#[derive(Debug, Error, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum DecoderError {
    #[error("unsupported codec: {codec}")]
    UnsupportedCodec { codec: String },
    #[error("unsupported decoder capability: {capability}")]
    UnsupportedCapability { capability: String },
    #[error("decoder payload codec error: {message}")]
    PayloadCodec { message: String },
    #[error("decoder ABI violation: {message}")]
    AbiViolation { message: String },
    #[error("invalid packet: {message}")]
    InvalidPacket { message: String },
    #[error("decoder session is not configured")]
    NotConfigured,
    #[error("decoder needs more input")]
    NeedMoreInput,
    #[error("decoder reached end of stream")]
    Eof,
    #[error("decoder internal error: {message}")]
    Internal { message: String },
}

impl DecoderError {
    pub fn payload_codec(message: impl Into<String>) -> Self {
        Self::PayloadCodec {
            message: message.into(),
        }
    }

    pub fn abi_violation(message: impl Into<String>) -> Self {
        Self::AbiViolation {
            message: message.into(),
        }
    }

    pub fn internal(message: impl Into<String>) -> Self {
        Self::Internal {
            message: message.into(),
        }
    }
}

/// Creates native-frame decoder sessions for one plugin.
pub trait NativeDecoderPluginFactory: Send + Sync {
    fn name(&self) -> &str;

    fn capabilities(&self) -> DecoderCapabilities;

    fn native_requirements(&self) -> DecoderNativeRequirements {
        DecoderNativeRequirements::default()
    }

    fn supports_native_frame_presentation_release(&self) -> bool {
        self.capabilities().supports_presentation_release
    }

    fn open_native_session(
        &self,
        config: &DecoderSessionConfig,
    ) -> Result<Box<dyn NativeDecoderSession>, DecoderError>;
}

/// Stateful native-frame decoder session created by a decoder plugin factory.
pub trait NativeDecoderSession: Send {
    fn session_info(&self) -> DecoderSessionInfo;

    fn send_packet(
        &mut self,
        packet: &DecoderPacket,
        data: &[u8],
    ) -> Result<DecoderPacketResult, DecoderError>;

    fn receive_native_frame(&mut self) -> Result<DecoderReceiveNativeFrameOutput, DecoderError>;

    fn receive_pcm_frame(&mut self) -> Result<DecoderReceivePcmFrameOutput, DecoderError> {
        Err(DecoderError::UnsupportedCapability {
            capability: "audio-pcm-output".to_owned(),
        })
    }

    fn release_native_frame(&mut self, frame: DecoderNativeFrame) -> Result<(), DecoderError>;

    fn release_native_frame_with_presentation(
        &mut self,
        _frame: DecoderNativeFrame,
        _presented: bool,
    ) -> Result<(), DecoderError> {
        Err(DecoderError::UnsupportedCapability {
            capability: "presentation-aware-native-frame-release".to_owned(),
        })
    }

    fn flush(&mut self) -> Result<(), DecoderError>;

    fn close(&mut self) -> Result<(), DecoderError>;
}

#[cfg(test)]
mod tests {
    use super::{
        DecoderBitstreamFormat, DecoderCapabilities, DecoderCodecCapability, DecoderError,
        DecoderFrameFormat, DecoderMediaKind, DecoderNativeDeviceContext,
        DecoderNativeDeviceContextKind, DecoderNativeFrame, DecoderNativeFrameMetadata,
        DecoderNativeFrameReleaseTracking, DecoderNativeHandleKind, DecoderPacket,
        DecoderPacketResult, DecoderPcmFrame, DecoderPcmFrameMetadata, DecoderPcmSampleLayout,
        DecoderReceiveFrameStatus, DecoderReceiveNativeFrameOutput, DecoderReceivePcmFrameMetadata,
        DecoderSessionConfig, DecoderSessionInfo, DecoderVisibleRect, NativeDecoderSession,
        normalize_decoder_codec_identifier,
    };
    use crate::{
        NativeFrame, NativeFrameColorMetadata, NativeFrameHdrMetadata, NativeFrameMetadata,
        NativeFramePipelineProfile, NativeFrameSyncInfo, NativeFrameTransform, NativeHandleKind,
    };

    fn decoder_native_frame() -> DecoderNativeFrame {
        DecoderNativeFrame {
            metadata: DecoderNativeFrameMetadata {
                media_kind: DecoderMediaKind::Video,
                format: DecoderFrameFormat::Nv12,
                codec: "hevc".to_owned(),
                pts_us: Some(125_000),
                duration_us: Some(41_667),
                width: 3_840,
                height: 2_160,
                coded_width: Some(3_840),
                coded_height: Some(2_176),
                visible_rect: Some(DecoderVisibleRect {
                    x: 0,
                    y: 0,
                    width: 3_840,
                    height: 2_160,
                }),
                handle_kind: DecoderNativeHandleKind::D3D11Texture2D,
                pipeline_profile: Some(NativeFramePipelineProfile::D3D11Texture2D),
                color_space: Some("bt709".to_owned()),
                hdr_metadata: Some("hdr10".to_owned()),
                color: Some(NativeFrameColorMetadata {
                    primaries: Some("bt2020".to_owned()),
                    transfer: Some("smpte2084".to_owned()),
                    matrix: Some("bt2020-ncl".to_owned()),
                    range: Some("limited".to_owned()),
                    bit_depth: Some(10),
                }),
                hdr: Some(NativeFrameHdrMetadata {
                    kind: "hdr10".to_owned(),
                    mastering_display: None,
                    content_light: None,
                    dolby_vision: None,
                }),
                sync_info: Some(NativeFrameSyncInfo {
                    kind: "d3d11_keyed_mutex".to_owned(),
                    handle: None,
                    value: Some(1),
                }),
                transform: Some(NativeFrameTransform {
                    rotation_degrees: 0,
                    mirrored_horizontal: false,
                    mirrored_vertical: false,
                }),
                frame_id: Some(99),
                release_tracking: Some(DecoderNativeFrameReleaseTracking {
                    frame_id: Some(99),
                    requires_release: true,
                }),
            },
            handle: 0xfeed,
            lease_token: None,
        }
    }

    #[test]
    fn decoder_native_frame_converts_to_shared_native_frame() {
        let decoder_frame = decoder_native_frame();
        let native_frame = NativeFrame::from(decoder_frame.clone());

        assert_eq!(native_frame.handle, decoder_frame.handle);
        assert_eq!(
            native_frame.metadata.handle_kind,
            NativeHandleKind::D3D11Texture2D
        );
        assert_eq!(
            native_frame
                .metadata
                .visible_rect
                .as_ref()
                .map(|rect| rect.height),
            Some(2_160)
        );
        assert_eq!(
            native_frame
                .metadata
                .release_tracking
                .as_ref()
                .map(|tracking| tracking.requires_release),
            Some(true)
        );
    }

    #[test]
    fn shared_native_frame_converts_back_to_decoder_native_frame() {
        let original = decoder_native_frame();
        let native_frame = NativeFrame::from(original.clone());
        let recovered = DecoderNativeFrame::from(native_frame);

        assert_eq!(recovered, original);
    }

    #[test]
    fn native_frame_metadata_converts_to_decoder_metadata() {
        let metadata = NativeFrameMetadata::from(decoder_native_frame().metadata);
        let decoder_metadata = DecoderNativeFrameMetadata::from(metadata);

        assert_eq!(
            decoder_metadata.handle_kind,
            DecoderNativeHandleKind::D3D11Texture2D
        );
        assert_eq!(
            decoder_metadata.pipeline_profile,
            Some(NativeFramePipelineProfile::D3D11Texture2D)
        );
        assert_eq!(decoder_metadata.color_space.as_deref(), Some("bt709"));
        assert_eq!(decoder_metadata.frame_id, Some(99));
        assert_eq!(
            decoder_metadata
                .visible_rect
                .as_ref()
                .map(|rect| rect.width),
            Some(3_840)
        );
    }

    #[test]
    fn android_native_handle_kinds_round_trip_between_decoder_and_shared_frames() {
        for handle_kind in [
            DecoderNativeHandleKind::MediaCodecHardwareBuffer,
            DecoderNativeHandleKind::MediaCodecSurfaceTexture,
        ] {
            let shared = NativeHandleKind::from(handle_kind.clone());
            let recovered = DecoderNativeHandleKind::from(shared);

            assert_eq!(recovered, handle_kind);
        }
    }

    #[test]
    fn android_native_window_device_context_round_trips_json_and_kind() {
        let context = DecoderNativeDeviceContext::AndroidNativeWindow { window_ptr: 0xabc };

        let encoded = serde_json::to_string(&context).expect("serialize Android native context");
        let decoded: DecoderNativeDeviceContext =
            serde_json::from_str(&encoded).expect("deserialize Android native context");

        assert_eq!(
            decoded.kind(),
            DecoderNativeDeviceContextKind::AndroidNativeWindow
        );
        assert_eq!(decoded.android_native_window_ptr(), Some(0xabc));
        assert_eq!(decoded.d3d11_device_ptr(), None);
    }

    #[test]
    fn pcm_frame_metadata_pins_media_kind_to_audio_and_round_trips_json() {
        let mut metadata = DecoderPcmFrameMetadata::audio(
            "aac",
            DecoderFrameFormat::F32,
            48_000,
            2,
            DecoderPcmSampleLayout::Planar,
            1_024,
        );
        metadata.pts_us = Some(1_000_000);
        metadata.duration_us = Some(21_333);
        metadata.channel_layout = Some("stereo".to_owned());
        metadata.discontinuity = true;
        let frame = DecoderPcmFrame {
            metadata,
            data: vec![0, 1, 2, 3],
        };

        let encoded = serde_json::to_vec(&frame).expect("pcm frame json encode");
        let decoded: DecoderPcmFrame =
            serde_json::from_slice(&encoded).expect("pcm frame json decode");

        assert_eq!(decoded.metadata.media_kind, DecoderMediaKind::Audio);
        assert_eq!(decoded.metadata.codec, "aac");
        assert_eq!(decoded.metadata.format, DecoderFrameFormat::F32);
        assert_eq!(
            decoded.metadata.sample_layout,
            DecoderPcmSampleLayout::Planar
        );
        assert_eq!(decoded.metadata.frame_count, 1_024);
        assert_eq!(decoded.metadata.channel_layout.as_deref(), Some("stereo"));
        assert!(decoded.metadata.discontinuity);
        assert_eq!(decoded.data, vec![0, 1, 2, 3]);
    }

    #[test]
    fn pcm_receive_metadata_uses_shared_receive_statuses() {
        let frame = DecoderPcmFrameMetadata::audio(
            "aac",
            DecoderFrameFormat::F32,
            48_000,
            2,
            DecoderPcmSampleLayout::Interleaved,
            512,
        );

        assert_eq!(
            DecoderReceivePcmFrameMetadata::frame(frame.clone()).status,
            DecoderReceiveFrameStatus::Frame
        );
        assert_eq!(
            DecoderReceivePcmFrameMetadata::frame(frame)
                .frame
                .map(|metadata| metadata.media_kind),
            Some(DecoderMediaKind::Audio)
        );
        assert_eq!(
            DecoderReceivePcmFrameMetadata::need_more_input().status,
            DecoderReceiveFrameStatus::NeedMoreInput
        );
        assert_eq!(
            DecoderReceivePcmFrameMetadata::eof().status,
            DecoderReceiveFrameStatus::Eof
        );
    }

    #[test]
    fn pcm_frame_validation_rejects_video_format_and_wrong_payload_length() {
        let frame = DecoderPcmFrame {
            metadata: DecoderPcmFrameMetadata::audio(
                "aac",
                DecoderFrameFormat::Nv12,
                48_000,
                2,
                DecoderPcmSampleLayout::Interleaved,
                256,
            ),
            data: vec![0; 4],
        };

        let error = frame.validate().expect_err("invalid PCM must be rejected");
        assert!(matches!(error, DecoderError::UnsupportedCapability { .. }));

        let frame = DecoderPcmFrame {
            metadata: DecoderPcmFrameMetadata::audio(
                "aac",
                DecoderFrameFormat::S16,
                48_000,
                2,
                DecoderPcmSampleLayout::Interleaved,
                256,
            ),
            data: vec![0; 4],
        };
        let error = frame
            .validate()
            .expect_err("wrong PCM payload must be rejected");
        assert!(matches!(error, DecoderError::InvalidPacket { .. }));
    }

    #[test]
    fn decoder_packet_preserves_source_normalizer_media_kind() {
        let video = crate::SourceNormalizerPacket {
            pts_us: Some(1_000),
            dts_us: Some(900),
            duration_us: Some(33_333),
            stream_index: 0,
            media_kind: crate::SourceNormalizerPacketMediaKind::Video,
            key_frame: true,
            discontinuity: true,
            ..crate::SourceNormalizerPacket::default()
        };
        let video_packet = DecoderPacket::try_from(video).expect("video packet maps");
        assert_eq!(video_packet.media_kind, DecoderMediaKind::Video);
        assert_eq!(video_packet.stream_index, 0);
        assert!(video_packet.key_frame);
        assert!(video_packet.discontinuity);

        let audio = crate::SourceNormalizerPacket {
            pts_us: Some(2_000),
            dts_us: Some(2_000),
            duration_us: Some(21_333),
            stream_index: 1,
            media_kind: crate::SourceNormalizerPacketMediaKind::Audio,
            sample_rate: Some(48_000),
            channels: Some(2),
            ..crate::SourceNormalizerPacket::default()
        };
        let audio_packet = DecoderPacket::try_from(audio).expect("audio packet maps");
        assert_eq!(audio_packet.media_kind, DecoderMediaKind::Audio);
        assert_eq!(audio_packet.stream_index, 1);
        assert_eq!(audio_packet.duration_us, Some(21_333));
    }

    #[test]
    fn decoder_packet_rejects_source_normalizer_subtitle_packet() {
        let subtitle = crate::SourceNormalizerPacket {
            stream_index: 2,
            media_kind: crate::SourceNormalizerPacketMediaKind::Subtitle,
            ..crate::SourceNormalizerPacket::default()
        };

        let error = DecoderPacket::try_from(subtitle)
            .expect_err("subtitle packets are not decoder packet input");

        assert!(matches!(
            error,
            DecoderError::UnsupportedCapability { capability }
                if capability == "source-normalizer-subtitle-packet"
        ));
    }

    #[test]
    fn audio_decoder_session_config_round_trips_pcm_output_preferences() {
        let config = DecoderSessionConfig {
            codec: "aac".to_owned(),
            media_kind: DecoderMediaKind::Audio,
            extradata: vec![0x12, 0x10],
            bitstream_format: Some(DecoderBitstreamFormat::Unknown("adts".to_owned())),
            sample_rate: Some(48_000),
            channels: Some(2),
            channel_layout: Some("stereo".to_owned()),
            target_pcm_format: Some(DecoderFrameFormat::F32),
            target_pcm_sample_layout: Some(DecoderPcmSampleLayout::Interleaved),
            codec_delay_samples: Some(0),
            priming_samples: Some(2_112),
            trailing_padding_samples: Some(512),
            seek_preroll_samples: Some(1_024),
            color: Some(NativeFrameColorMetadata {
                primaries: Some("bt709".to_owned()),
                transfer: Some("bt709".to_owned()),
                matrix: Some("bt709".to_owned()),
                range: Some("limited".to_owned()),
                bit_depth: Some(8),
            }),
            hdr: None,
            ..DecoderSessionConfig::default()
        };

        let encoded = serde_json::to_vec(&config).expect("audio config json encode");
        let decoded: DecoderSessionConfig =
            serde_json::from_slice(&encoded).expect("audio config json decode");

        assert_eq!(decoded.media_kind, DecoderMediaKind::Audio);
        assert_eq!(decoded.sample_rate, Some(48_000));
        assert_eq!(decoded.channels, Some(2));
        assert_eq!(decoded.channel_layout.as_deref(), Some("stereo"));
        assert_eq!(decoded.target_pcm_format, Some(DecoderFrameFormat::F32));
        assert_eq!(
            decoded.target_pcm_sample_layout,
            Some(DecoderPcmSampleLayout::Interleaved)
        );
        assert_eq!(decoded.codec_delay_samples, Some(0));
        assert_eq!(decoded.priming_samples, Some(2_112));
        assert_eq!(decoded.trailing_padding_samples, Some(512));
        assert_eq!(decoded.seek_preroll_samples, Some(1_024));
        assert_eq!(
            decoded.color.as_ref().and_then(|color| color.bit_depth),
            Some(8)
        );
    }

    #[test]
    fn audio_decoder_session_config_maps_source_normalizer_audio_track() {
        let track = crate::SourceNormalizerPacketTrackInfo {
            stream_index: 1,
            media_kind: crate::SourceNormalizerPacketMediaKind::Audio,
            codec: "AAC".to_owned(),
            extradata: vec![0x12, 0x10],
            bitstream_format: Some(DecoderBitstreamFormat::Unknown("adts".to_owned())),
            width: None,
            height: None,
            coded_width: None,
            coded_height: None,
            reorder_depth: None,
            sample_rate: Some(48_000),
            channels: Some(2),
            channel_layout: Some("stereo".to_owned()),
            codec_delay_samples: Some(0),
            priming_samples: Some(2_112),
            trailing_padding_samples: Some(512),
            seek_preroll_samples: Some(1_024),
            color: Some(NativeFrameColorMetadata {
                primaries: Some("bt709".to_owned()),
                transfer: Some("bt709".to_owned()),
                matrix: Some("bt709".to_owned()),
                range: Some("limited".to_owned()),
                bit_depth: Some(8),
            }),
            hdr: None,
            frame_rate: None,
            time_base_num: Some(1),
            time_base_den: Some(48_000),
        };

        let config = DecoderSessionConfig::apple_native_audio_from_source_normalizer_track(&track)
            .expect("audio track maps to decoder config");

        assert_eq!(config.codec, "AAC");
        assert_eq!(config.media_kind, DecoderMediaKind::Audio);
        assert_eq!(config.extradata, vec![0x12, 0x10]);
        assert_eq!(
            config.bitstream_format,
            Some(DecoderBitstreamFormat::Unknown("adts".to_owned()))
        );
        assert_eq!(config.sample_rate, Some(48_000));
        assert_eq!(config.channels, Some(2));
        assert_eq!(config.channel_layout.as_deref(), Some("stereo"));
        assert_eq!(config.target_pcm_format, Some(DecoderFrameFormat::F32));
        assert_eq!(
            config.target_pcm_sample_layout,
            Some(DecoderPcmSampleLayout::Interleaved)
        );
        assert_eq!(config.codec_delay_samples, Some(0));
        assert_eq!(config.priming_samples, Some(2_112));
        assert_eq!(config.trailing_padding_samples, Some(512));
        assert_eq!(config.seek_preroll_samples, Some(1_024));
        assert_eq!(
            config.color.as_ref().and_then(|color| color.bit_depth),
            Some(8)
        );
        assert!(config.prefer_hardware);
        assert!(config.require_cpu_output);
    }

    #[test]
    fn audio_decoder_session_config_rejects_source_normalizer_video_track() {
        let track = crate::SourceNormalizerPacketTrackInfo {
            stream_index: 0,
            media_kind: crate::SourceNormalizerPacketMediaKind::Video,
            codec: "H264".to_owned(),
            extradata: Vec::new(),
            bitstream_format: Some(DecoderBitstreamFormat::Avcc),
            width: Some(1_920),
            height: Some(1_080),
            coded_width: Some(1_920),
            coded_height: Some(1_080),
            reorder_depth: None,
            sample_rate: None,
            channels: None,
            channel_layout: None,
            codec_delay_samples: None,
            priming_samples: None,
            trailing_padding_samples: None,
            seek_preroll_samples: None,
            color: None,
            hdr: None,
            frame_rate: Some(30.0),
            time_base_num: Some(1),
            time_base_den: Some(90_000),
        };

        let error = DecoderSessionConfig::apple_native_audio_from_source_normalizer_track(&track)
            .expect_err("video track is not an audio decoder input");

        assert!(matches!(
            error,
            DecoderError::UnsupportedCapability { capability }
                if capability == "source-normalizer-audio-track"
        ));
    }

    #[test]
    fn native_decoder_session_defaults_pcm_receive_to_capability_error() {
        let mut session = PcmUnsupportedDecoderSession;
        let error = session
            .receive_pcm_frame()
            .expect_err("default PCM receive should be unsupported");

        assert!(matches!(
            error,
            DecoderError::UnsupportedCapability { capability }
                if capability == "audio-pcm-output"
        ));
    }

    #[test]
    fn native_decoder_session_defaults_presentation_release_to_capability_error() {
        let mut session = PcmUnsupportedDecoderSession;
        let error = session
            .release_native_frame_with_presentation(decoder_native_frame(), true)
            .expect_err("default presentation release should be unsupported");

        assert!(matches!(
            error,
            DecoderError::UnsupportedCapability { capability }
                if capability == "presentation-aware-native-frame-release"
        ));
    }

    #[test]
    fn decoder_capabilities_match_mime_wrapped_profile_qualified_sample_entries() {
        let capabilities = DecoderCapabilities {
            codecs: vec![DecoderCodecCapability {
                codec: "AVC1".to_owned(),
                media_kind: DecoderMediaKind::Video,
                profiles: Vec::new(),
                output_formats: Vec::new(),
            }],
            ..DecoderCapabilities::default()
        };

        assert!(capabilities.supports_codec("video/avc1.640028", DecoderMediaKind::Video));
        assert!(!capabilities.supports_codec("avc1garbage", DecoderMediaKind::Video));
    }

    #[test]
    fn codec_normalization_does_not_truncate_custom_dotted_names() {
        assert_eq!(
            normalize_decoder_codec_identifier("Fixture.Video.V1"),
            "fixture.video.v1"
        );
        assert_eq!(normalize_decoder_codec_identifier("dvh1.05.06"), "dvh1");
    }

    struct PcmUnsupportedDecoderSession;

    impl NativeDecoderSession for PcmUnsupportedDecoderSession {
        fn session_info(&self) -> DecoderSessionInfo {
            DecoderSessionInfo::default()
        }

        fn send_packet(
            &mut self,
            _packet: &DecoderPacket,
            _data: &[u8],
        ) -> Result<DecoderPacketResult, DecoderError> {
            Ok(DecoderPacketResult::default())
        }

        fn receive_native_frame(
            &mut self,
        ) -> Result<DecoderReceiveNativeFrameOutput, DecoderError> {
            Ok(DecoderReceiveNativeFrameOutput::NeedMoreInput)
        }

        fn release_native_frame(&mut self, _frame: DecoderNativeFrame) -> Result<(), DecoderError> {
            Ok(())
        }

        fn flush(&mut self) -> Result<(), DecoderError> {
            Ok(())
        }

        fn close(&mut self) -> Result<(), DecoderError> {
            Ok(())
        }
    }
}