@@ -1142,10 +1142,12 @@ extension JPEG.Layout
1142
1142
/// Creates an image layout given image parameters and a scan decomposition.
1143
1143
///
1144
1144
/// If the image coding process is a sequential process, the given scan headers
1145
- /// should be constructed using the ``JPEG.Header.Scan/sequential(_:) [8EG0R]``
1145
+ /// should be constructed using the
1146
+ /// ``JPEG.Header.Scan/sequential(_:) ((JPEG.Component.Key, JPEG.Table.HuffmanDC.Selector, JPEG.Table.HuffmanAC.Selector)...)``
1146
1147
/// constructor. If the coding process is progressive, the scan headers
1147
- /// should be constructed with the ``JPEG.Header.Scan/progressive(_:bits:) [4VRKH]``,
1148
- /// ``JPEG.Header.Scan/progressive(_:bit:) [6Z2C2]``,
1148
+ /// should be constructed with the
1149
+ /// ``JPEG.Header.Scan/progressive(_:bits:) ((JPEG.Component.Key, JPEG.Table.HuffmanDC.Selector)..., _)``,
1150
+ /// ``JPEG.Header.Scan/progressive(_:bit:) (JPEG.Component.Key..., _)``,
1149
1151
/// ``JPEG.Header.Scan/progressive(_:band:bits:)``, or
1150
1152
/// ``JPEG.Header.Scan/progressive(_:band:bit:)`` constructors.
1151
1153
///
@@ -1478,7 +1480,8 @@ extension JPEG.Header.Scan
1478
1480
}
1479
1481
/// Creates a sequential scan descriptor.
1480
1482
///
1481
- /// This function is variadic sugar for ``Scan/sequential(_:) [4K2XD]``.
1483
+ /// This function is variadic sugar for
1484
+ /// ``Scan/sequential(_:) ([(JPEG.Component.Key, JPEG.Table.HuffmanDC.Selector, JPEG.Table.HuffmanAC.Selector)])``.
1482
1485
public static
1483
1486
func sequential( _ components:
1484
1487
(
@@ -1523,7 +1526,8 @@ extension JPEG.Header.Scan
1523
1526
}
1524
1527
/// Creates a progressive initial DC scan descriptor.
1525
1528
///
1526
- /// This function is variadic sugar for ``Scan/progressive(_:bits:) [4NV9J]``.
1529
+ /// This function is variadic sugar for
1530
+ /// ``Scan/progressive(_:bits:) ([(JPEG.Component.Key, JPEG.Table.HuffmanDC.Selector)], _)``.
1527
1531
public static
1528
1532
func progressive( _
1529
1533
components: ( ci: JPEG . Component . Key , dc: JPEG . Table . HuffmanDC . Selector ) ... ,
@@ -1563,7 +1567,8 @@ extension JPEG.Header.Scan
1563
1567
}
1564
1568
/// Creates a progressive refining DC scan descriptor.
1565
1569
///
1566
- /// This function is variadic sugar for ``Scan/progressive(_:bit:) [404AZ]``.
1570
+ /// This function is variadic sugar for
1571
+ /// ``Scan/progressive(_:bit:) ([JPEG.Component.Key], _)``.
1567
1572
public static
1568
1573
func progressive( _
1569
1574
components: JPEG . Component . Key ... ,
0 commit comments