class Google::Apis::TranscoderV1beta1::Deblock

Deblock preprocessing configuration.

Attributes

enabled[RW]

Enable deblocker. The default is `false`. Corresponds to the JSON property `enabled` @return [Boolean]

enabled?[RW]

Enable deblocker. The default is `false`. Corresponds to the JSON property `enabled` @return [Boolean]

strength[RW]

Set strength of the deblocker. Enter a value between 0 and 1. The higher the value, the stronger the block removal. 0 is no deblocking. The default is 0. Corresponds to the JSON property `strength` @return [Float]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/transcoder_v1beta1/classes.rb, line 450
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/transcoder_v1beta1/classes.rb, line 455
def update!(**args)
  @enabled = args[:enabled] if args.key?(:enabled)
  @strength = args[:strength] if args.key?(:strength)
end