# HG changeset patch # User Paper <37962225+mrpapersonic@users.noreply.github.com> # Date 1674534525 18000 # Node ID f3e30ce83303346b895c527a7b7976f31af353b9 # Parent 32af787f8cb8c987e41e733d0c661d18c677942c disable_resample.cs: Avoid unnecessary declarations committer: GitHub diff -r 32af787f8cb8 -r f3e30ce83303 disable_resample.cs --- a/disable_resample.cs Mon Jan 23 23:25:44 2023 -0500 +++ b/disable_resample.cs Mon Jan 23 23:28:45 2023 -0500 @@ -6,10 +6,9 @@ if (track.IsVideo()) { foreach (TrackEvent evnt in track.Events) { VideoEvent videoEvent = (VideoEvent)evnt; - VideoResampleMode VRMode = VideoResampleMode.Disable; - videoEvent.ResampleMode = VRMode; + videoEvent.ResampleMode = VideoResampleMode.Disable; } } } } -} \ No newline at end of file +}