gstreamer-rs/gstreamer-video/src
Marijn Suijten c95bd4f47a video: Implement get_kr_kb manually to fix capitalization
Capitalization is wrong in function and parameter/variable names:

    warning: method `get_Kr_Kb` should have a snake case name
       --> gstreamer-video/src/auto/enums.rs:515:12
        |
    515 |     pub fn get_Kr_Kb(&self) -> Option<(f64, f64)> {
        |            ^^^^^^^^^ help: convert the identifier to snake case (notice the capitalization): `get_kr_kb`
        |
        = note: `#[warn(non_snake_case)]` on by default

    warning: variable `Kr` should have a snake case name
       --> gstreamer-video/src/auto/enums.rs:518:21
        |
    518 |             let mut Kr = mem::MaybeUninit::uninit();
        |                     ^^ help: convert the identifier to snake case (notice the capitalization): `kr`

    warning: variable `Kb` should have a snake case name
       --> gstreamer-video/src/auto/enums.rs:519:21
        |
    519 |             let mut Kb = mem::MaybeUninit::uninit();
        |                     ^^ help: convert the identifier to snake case (notice the capitalization): `kb`

    warning: variable `Kr` should have a snake case name
       --> gstreamer-video/src/auto/enums.rs:525:17
        |
    525 |             let Kr = Kr.assume_init();
        |                 ^^ help: convert the identifier to snake case (notice the capitalization): `kr`

    warning: variable `Kb` should have a snake case name
       --> gstreamer-video/src/auto/enums.rs:526:17
        |
    526 |             let Kb = Kb.assume_init();
        |                 ^^ help: convert the identifier to snake case (notice the capitalization): `kb`
2020-12-07 12:09:39 +01:00
..
auto regen 2020-11-27 14:37:24 +01:00
subclass gstreamer-video: Update manual code to 2018 edition 2020-11-22 19:15:20 +02:00
caps_features.rs Revert "Remove unnecessary dox feature" 2020-11-27 14:37:49 +01:00
functions.rs gstreamer-video: Update manual code to 2018 edition 2020-11-22 19:15:20 +02:00
lib.rs video: Implement get_kr_kb manually to fix capitalization 2020-12-07 12:09:39 +01:00
utils.rs gstreamer-video: Update manual code to 2018 edition 2020-11-22 19:15:20 +02:00
video_buffer_pool.rs video: implement Eq and PartialEq on VideoAlignment 2020-12-03 16:39:35 +01:00
video_codec_frame.rs Replace Result<(), fmt::Error> with fmt::Result 2020-12-07 12:09:39 +01:00
video_codec_state.rs Replace Result<(), fmt::Error> with fmt::Result 2020-12-07 12:09:39 +01:00
video_color_matrix.rs video: Implement get_kr_kb manually to fix capitalization 2020-12-07 12:09:39 +01:00
video_converter.rs gstreamer-video: Update manual code to 2018 edition 2020-11-22 19:15:20 +02:00
video_decoder.rs Revert "Remove unnecessary dox feature" 2020-11-27 14:37:49 +01:00
video_encoder.rs Revert "Remove unnecessary dox feature" 2020-11-27 14:37:49 +01:00
video_event.rs gstreamer-video: Update manual code to 2018 edition 2020-11-22 19:15:20 +02:00
video_format.rs video: Reuse Self::Err in from_str 2020-12-07 12:09:39 +01:00
video_format_info.rs audio/video: Add missing FromGlibPtrNone<*const> for FormatInfo 2020-12-07 12:09:39 +01:00
video_frame.rs gstreamer-video: Update manual code to 2018 edition 2020-11-22 19:15:20 +02:00
video_info.rs video: Reuse Self::Err in from_str 2020-12-07 12:09:39 +01:00
video_meta.rs video/video_meta: get_plane_size now takes a size-annotated array ptr 2020-12-04 19:37:10 +01:00
video_overlay.rs gstreamer-video: Update manual code to 2018 edition 2020-11-22 19:15:20 +02:00
video_overlay_composition.rs gstreamer-video: Update manual code to 2018 edition 2020-11-22 19:15:20 +02:00
video_rectangle.rs gstreamer-video: Update manual code to 2018 edition 2020-11-22 19:15:20 +02:00
video_time_code.rs video: Reuse Self::Err in from_str 2020-12-07 12:09:39 +01:00
video_time_code_interval.rs video: Reuse Self::Err in from_str 2020-12-07 12:09:39 +01:00