class Google::Apis::TranscoderV1::Deblock

Deblock preprocessing configuration. Note: This configuration is not supported.

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_v1/classes.rb, line 402
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_v1/classes.rb, line 407
def update!(**args)
  @enabled = args[:enabled] if args.key?(:enabled)
  @strength = args[:strength] if args.key?(:strength)
end