X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-codec-support%2Fsrc%2Fdata%2Fmod.rs;fp=nihav-codec-support%2Fsrc%2Fdata%2Fmod.rs;h=b8980f2d9b5180d5c06916650cff93200f7e789e;hb=e65c00402a7bfdeb7e1922a46fab0fbabb7bbf33;hp=35a89736b72075a71e6d4305b9bc667e6795f401;hpb=0443d0c5f73697d5eb59081be3cde9fb02dc3e70;p=nihav.git diff --git a/nihav-codec-support/src/data/mod.rs b/nihav-codec-support/src/data/mod.rs index 35a8973..b8980f2 100644 --- a/nihav-codec-support/src/data/mod.rs +++ b/nihav-codec-support/src/data/mod.rs @@ -5,7 +5,7 @@ /// In the decoding process of many codecs there is a need to store some previously decoded information and only immediate top neighbours are used. /// This can be done by storing either the full information for the whole frame or just the top line and move information for last decoded row to the top every time when row decoding is done. /// `GenericCache` implements the second approach. -/// +/// /// # Examples /// /// Create a cache for one line and use top pixel for prediction: