@@ -265,7 +265,6 @@ fn qrshr<const PRECISION: i32, const BIT_DEPTH: usize>(val: i32) -> i32 {
265
265
/// * `range`: see [YuvIntensityRange]
266
266
/// * `matrix`: see [YuvStandardMatrix]
267
267
///
268
- ///
269
268
pub ( crate ) fn yuv400_to_rgba8 (
270
269
image : YuvPlanarImage < u8 > ,
271
270
rgba : & mut [ u8 ] ,
@@ -286,7 +285,6 @@ pub(crate) fn yuv400_to_rgba8(
286
285
/// * `range`: see [YuvIntensityRange]
287
286
/// * `matrix`: see [YuvStandardMatrix]
288
287
///
289
- ///
290
288
pub ( crate ) fn yuv400_to_rgba10 (
291
289
image : YuvPlanarImage < u16 > ,
292
290
rgba : & mut [ u16 ] ,
@@ -307,7 +305,6 @@ pub(crate) fn yuv400_to_rgba10(
307
305
/// * `range`: see [YuvIntensityRange]
308
306
/// * `matrix`: see [YuvStandardMatrix]
309
307
///
310
- ///
311
308
pub ( crate ) fn yuv400_to_rgba12 (
312
309
image : YuvPlanarImage < u16 > ,
313
310
rgba : & mut [ u16 ] ,
@@ -328,7 +325,6 @@ pub(crate) fn yuv400_to_rgba12(
328
325
/// * `range`: see [YuvIntensityRange]
329
326
/// * `matrix`: see [YuvStandardMatrix]
330
327
///
331
- ///
332
328
#[ inline]
333
329
fn yuv400_to_rgbx_impl <
334
330
V : Copy + AsPrimitive < i32 > + ' static + Sized ,
@@ -447,7 +443,6 @@ where
447
443
/// * `range`: see [YuvIntensityRange]
448
444
/// * `matrix`: see [YuvStandardMatrix]
449
445
///
450
- ///
451
446
pub ( crate ) fn yuv420_to_rgba8 (
452
447
image : YuvPlanarImage < u8 > ,
453
448
rgb : & mut [ u8 ] ,
@@ -468,7 +463,6 @@ pub(crate) fn yuv420_to_rgba8(
468
463
/// * `range`: see [YuvIntensityRange]
469
464
/// * `matrix`: see [YuvStandardMatrix]
470
465
///
471
- ///
472
466
pub ( crate ) fn yuv420_to_rgba10 (
473
467
image : YuvPlanarImage < u16 > ,
474
468
rgb : & mut [ u16 ] ,
@@ -489,7 +483,6 @@ pub(crate) fn yuv420_to_rgba10(
489
483
/// * `range`: see [YuvIntensityRange]
490
484
/// * `matrix`: see [YuvStandardMatrix]
491
485
///
492
- ///
493
486
pub ( crate ) fn yuv420_to_rgba12 (
494
487
image : YuvPlanarImage < u16 > ,
495
488
rgb : & mut [ u16 ] ,
@@ -628,7 +621,6 @@ fn process_halved_chroma_row<
628
621
/// * `range`: see [YuvIntensityRange]
629
622
/// * `matrix`: see [YuvStandardMatrix]
630
623
///
631
- ///
632
624
#[ inline]
633
625
fn yuv420_to_rgbx <
634
626
V : Copy + AsPrimitive < i32 > + ' static + Sized ,
@@ -790,7 +782,6 @@ where
790
782
/// * `range`: see [YuvIntensityRange]
791
783
/// * `matrix`: see [YuvStandardMatrix]
792
784
///
793
- ///
794
785
pub ( crate ) fn yuv422_to_rgba8 (
795
786
image : YuvPlanarImage < u8 > ,
796
787
rgb : & mut [ u8 ] ,
@@ -811,7 +802,6 @@ pub(crate) fn yuv422_to_rgba8(
811
802
/// * `range`: see [YuvIntensityRange]
812
803
/// * `matrix`: see [YuvStandardMatrix]
813
804
///
814
- ///
815
805
pub ( crate ) fn yuv422_to_rgba10 (
816
806
image : YuvPlanarImage < u16 > ,
817
807
rgb : & mut [ u16 ] ,
@@ -832,7 +822,6 @@ pub(crate) fn yuv422_to_rgba10(
832
822
/// * `range`: see [YuvIntensityRange]
833
823
/// * `matrix`: see [YuvStandardMatrix]
834
824
///
835
- ///
836
825
pub ( crate ) fn yuv422_to_rgba12 (
837
826
image : YuvPlanarImage < u16 > ,
838
827
rgb : & mut [ u16 ] ,
@@ -853,7 +842,6 @@ pub(crate) fn yuv422_to_rgba12(
853
842
/// * `range`: see [YuvIntensityRange]
854
843
/// * `matrix`: see [YuvStandardMatrix]
855
844
///
856
- ///
857
845
fn yuv422_to_rgbx_impl <
858
846
V : Copy + AsPrimitive < i32 > + ' static + Sized ,
859
847
const CHANNELS : usize ,
@@ -979,7 +967,6 @@ where
979
967
/// * `range`: see [YuvIntensityRange]
980
968
/// * `matrix`: see [YuvStandardMatrix]
981
969
///
982
- ///
983
970
pub ( crate ) fn yuv444_to_rgba8 (
984
971
image : YuvPlanarImage < u8 > ,
985
972
rgba : & mut [ u8 ] ,
@@ -1004,7 +991,6 @@ pub(crate) fn yuv444_to_rgba8(
1004
991
/// * `range`: see [YuvIntensityRange]
1005
992
/// * `matrix`: see [YuvStandardMatrix]
1006
993
///
1007
- ///
1008
994
pub ( super ) fn yuv444_to_rgba10 (
1009
995
image : YuvPlanarImage < u16 > ,
1010
996
rgba : & mut [ u16 ] ,
@@ -1029,7 +1015,6 @@ pub(super) fn yuv444_to_rgba10(
1029
1015
/// * `range`: see [YuvIntensityRange]
1030
1016
/// * `matrix`: see [YuvStandardMatrix]
1031
1017
///
1032
- ///
1033
1018
pub ( super ) fn yuv444_to_rgba12 (
1034
1019
image : YuvPlanarImage < u16 > ,
1035
1020
rgba : & mut [ u16 ] ,
@@ -1054,7 +1039,6 @@ pub(super) fn yuv444_to_rgba12(
1054
1039
/// * `range`: see [YuvIntensityRange]
1055
1040
/// * `matrix`: see [YuvStandardMatrix]
1056
1041
///
1057
- ///
1058
1042
#[ inline]
1059
1043
fn yuv444_to_rgbx_impl <
1060
1044
V : Copy + AsPrimitive < i32 > + ' static + Sized ,
@@ -1172,7 +1156,6 @@ where
1172
1156
/// * `rgb`: RGB image layout
1173
1157
/// * `range`: see [YuvIntensityRange]
1174
1158
///
1175
- ///
1176
1159
fn gbr_to_rgba8 (
1177
1160
image : YuvPlanarImage < u8 > ,
1178
1161
rgb : & mut [ u8 ] ,
@@ -1191,7 +1174,6 @@ fn gbr_to_rgba8(
1191
1174
/// * `rgba`: RGBx image layout
1192
1175
/// * `range`: see [YuvIntensityRange]
1193
1176
///
1194
- ///
1195
1177
fn gbr_to_rgba10 (
1196
1178
image : YuvPlanarImage < u16 > ,
1197
1179
rgba : & mut [ u16 ] ,
@@ -1210,7 +1192,6 @@ fn gbr_to_rgba10(
1210
1192
/// * `rgba`: RGBx image layout
1211
1193
/// * `range`: see [YuvIntensityRange]
1212
1194
///
1213
- ///
1214
1195
fn gbr_to_rgba12 (
1215
1196
image : YuvPlanarImage < u16 > ,
1216
1197
rgba : & mut [ u16 ] ,
@@ -1229,7 +1210,6 @@ fn gbr_to_rgba12(
1229
1210
/// * `rgb`: RGB image layout
1230
1211
/// * `range`: see [YuvIntensityRange]
1231
1212
///
1232
- ///
1233
1213
#[ inline]
1234
1214
fn gbr_to_rgbx_impl <
1235
1215
V : Copy + AsPrimitive < i32 > + ' static + Sized ,
0 commit comments