Class VideoStream.H264CodecSettings.Builder (0.45.0)

public static final class VideoStream.H264CodecSettings.Builder extends GeneratedMessageV3.Builder<VideoStream.H264CodecSettings.Builder> implements VideoStream.H264CodecSettingsOrBuilder

H264 codec settings.

Protobuf type google.cloud.video.livestream.v1.VideoStream.H264CodecSettings

Static Methods

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

Methods

addRepeatedField(Descriptors.FieldDescriptor field, Object value)

public VideoStream.H264CodecSettings.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)
Parameters
Name Description
field FieldDescriptor
value Object
Returns
Type Description
VideoStream.H264CodecSettings.Builder
Overrides

build()

public VideoStream.H264CodecSettings build()
Returns
Type Description
VideoStream.H264CodecSettings

buildPartial()

public VideoStream.H264CodecSettings buildPartial()
Returns
Type Description
VideoStream.H264CodecSettings

clear()

public VideoStream.H264CodecSettings.Builder clear()
Returns
Type Description
VideoStream.H264CodecSettings.Builder
Overrides

clearAllowOpenGop()

public VideoStream.H264CodecSettings.Builder clearAllowOpenGop()

Specifies whether an open Group of Pictures (GOP) structure should be allowed or not. The default is false.

bool allow_open_gop = 6;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearAqStrength()

public VideoStream.H264CodecSettings.Builder clearAqStrength()

Specify the intensity of the adaptive quantizer (AQ). Must be between 0 and 1, where 0 disables the quantizer and 1 maximizes the quantizer. A higher value equals a lower bitrate but smoother image. The default is 0.

double aq_strength = 14;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearBFrameCount()

public VideoStream.H264CodecSettings.Builder clearBFrameCount()

The number of consecutive B-frames. Must be greater than or equal to zero. Must be less than gop_frame_count if set. The default is 0.

int32 b_frame_count = 13;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearBPyramid()

public VideoStream.H264CodecSettings.Builder clearBPyramid()

Allow B-pyramid for reference frame selection. This may not be supported on all decoders. The default is false.

bool b_pyramid = 12;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearBitrateBps()

public VideoStream.H264CodecSettings.Builder clearBitrateBps()

Required. The video bitrate in bits per second. Minimum value is 10,000.

  • For SD resolution (< 720p), must be <= 3,000,000 (3 Mbps).
  • For HD resolution (<= 1080p), must be <= 15,000,000 (15 Mbps).

int32 bitrate_bps = 4 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearEntropyCoder()

public VideoStream.H264CodecSettings.Builder clearEntropyCoder()

The entropy coder to use. The default is cabac.

Supported entropy coders:

  • cavlc
  • cabac

string entropy_coder = 11;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearField(Descriptors.FieldDescriptor field)

public VideoStream.H264CodecSettings.Builder clearField(Descriptors.FieldDescriptor field)
Parameter
Name Description
field FieldDescriptor
Returns
Type Description
VideoStream.H264CodecSettings.Builder
Overrides

clearFrameRate()

public VideoStream.H264CodecSettings.Builder clearFrameRate()

Required. The target video frame rate in frames per second (FPS). Must be less than or equal to 60. Will default to the input frame rate if larger than the input frame rate. The API will generate an output FPS that is divisible by the input FPS, and smaller or equal to the target FPS. See Calculating frame rate for more information.

double frame_rate = 3 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearGopDuration()

public VideoStream.H264CodecSettings.Builder clearGopDuration()

Select the GOP size based on the specified duration. The default is 2s. Note that gopDuration must be less than or equal to segment_duration, and segment_duration must be divisible by gopDuration. Valid range is [2s, 20s].

All video streams in the same channel must have the same GOP size.

.google.protobuf.Duration gop_duration = 8;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

clearGopFrameCount()

public VideoStream.H264CodecSettings.Builder clearGopFrameCount()

Select the GOP size based on the specified frame count. If GOP frame count is set instead of GOP duration, GOP duration will be calculated by gopFrameCount/frameRate. The calculated GOP duration must satisfy the limitations on gopDuration as well. Valid range is [60, 600].

int32 gop_frame_count = 7;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearGopMode()

public VideoStream.H264CodecSettings.Builder clearGopMode()
Returns
Type Description
VideoStream.H264CodecSettings.Builder

clearHeightPixels()

public VideoStream.H264CodecSettings.Builder clearHeightPixels()

Required. The height of the video in pixels. Must be an even integer. Valid range is [180, 1080].

int32 height_pixels = 2;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearOneof(Descriptors.OneofDescriptor oneof)

public VideoStream.H264CodecSettings.Builder clearOneof(Descriptors.OneofDescriptor oneof)
Parameter
Name Description
oneof OneofDescriptor
Returns
Type Description
VideoStream.H264CodecSettings.Builder
Overrides

clearProfile()

public VideoStream.H264CodecSettings.Builder clearProfile()

Enforces the specified codec profile. The following profiles are supported:

  • baseline
  • main (default)
  • high

    The available options are FFmpeg-compatible Profile Options. Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

string profile = 15;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearTune()

public VideoStream.H264CodecSettings.Builder clearTune()

Enforces the specified codec tune. The available options are FFmpeg-compatible Encode Options Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

string tune = 16;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearVbvFullnessBits()

public VideoStream.H264CodecSettings.Builder clearVbvFullnessBits()

Initial fullness of the Video Buffering Verifier (VBV) buffer in bits. Must be greater than zero. The default is equal to 90% of vbv_size_bits.

int32 vbv_fullness_bits = 10;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearVbvSizeBits()

public VideoStream.H264CodecSettings.Builder clearVbvSizeBits()

Size of the Video Buffering Verifier (VBV) buffer in bits. Must be greater than zero. The default is equal to bitrate_bps.

int32 vbv_size_bits = 9;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clearWidthPixels()

public VideoStream.H264CodecSettings.Builder clearWidthPixels()

Required. The width of the video in pixels. Must be an even integer. Valid range is [320, 1920].

int32 width_pixels = 1;

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

clone()

public VideoStream.H264CodecSettings.Builder clone()
Returns
Type Description
VideoStream.H264CodecSettings.Builder
Overrides

getAllowOpenGop()

public boolean getAllowOpenGop()

Specifies whether an open Group of Pictures (GOP) structure should be allowed or not. The default is false.

bool allow_open_gop = 6;

Returns
Type Description
boolean

The allowOpenGop.

getAqStrength()

public double getAqStrength()

Specify the intensity of the adaptive quantizer (AQ). Must be between 0 and 1, where 0 disables the quantizer and 1 maximizes the quantizer. A higher value equals a lower bitrate but smoother image. The default is 0.

double aq_strength = 14;

Returns
Type Description
double

The aqStrength.

getBFrameCount()

public int getBFrameCount()

The number of consecutive B-frames. Must be greater than or equal to zero. Must be less than gop_frame_count if set. The default is 0.

int32 b_frame_count = 13;

Returns
Type Description
int

The bFrameCount.

getBPyramid()

public boolean getBPyramid()

Allow B-pyramid for reference frame selection. This may not be supported on all decoders. The default is false.

bool b_pyramid = 12;

Returns
Type Description
boolean

The bPyramid.

getBitrateBps()

public int getBitrateBps()

Required. The video bitrate in bits per second. Minimum value is 10,000.

  • For SD resolution (< 720p), must be <= 3,000,000 (3 Mbps).
  • For HD resolution (<= 1080p), must be <= 15,000,000 (15 Mbps).

int32 bitrate_bps = 4 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
int

The bitrateBps.

getDefaultInstanceForType()

public VideoStream.H264CodecSettings getDefaultInstanceForType()
Returns
Type Description
VideoStream.H264CodecSettings

getDescriptorForType()

public Descriptors.Descriptor getDescriptorForType()
Returns
Type Description
Descriptor
Overrides

getEntropyCoder()

public String getEntropyCoder()

The entropy coder to use. The default is cabac.

Supported entropy coders:

  • cavlc
  • cabac

string entropy_coder = 11;

Returns
Type Description
String

The entropyCoder.

getEntropyCoderBytes()

public ByteString getEntropyCoderBytes()

The entropy coder to use. The default is cabac.

Supported entropy coders:

  • cavlc
  • cabac

string entropy_coder = 11;

Returns
Type Description
ByteString

The bytes for entropyCoder.

getFrameRate()

public double getFrameRate()

Required. The target video frame rate in frames per second (FPS). Must be less than or equal to 60. Will default to the input frame rate if larger than the input frame rate. The API will generate an output FPS that is divisible by the input FPS, and smaller or equal to the target FPS. See Calculating frame rate for more information.

double frame_rate = 3 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
double

The frameRate.

getGopDuration()

public Duration getGopDuration()

Select the GOP size based on the specified duration. The default is 2s. Note that gopDuration must be less than or equal to segment_duration, and segment_duration must be divisible by gopDuration. Valid range is [2s, 20s].

All video streams in the same channel must have the same GOP size.

.google.protobuf.Duration gop_duration = 8;

Returns
Type Description
Duration

The gopDuration.

getGopDurationBuilder()

public Duration.Builder getGopDurationBuilder()

Select the GOP size based on the specified duration. The default is 2s. Note that gopDuration must be less than or equal to segment_duration, and segment_duration must be divisible by gopDuration. Valid range is [2s, 20s].

All video streams in the same channel must have the same GOP size.

.google.protobuf.Duration gop_duration = 8;

Returns
Type Description
Builder

getGopDurationOrBuilder()

public DurationOrBuilder getGopDurationOrBuilder()

Select the GOP size based on the specified duration. The default is 2s. Note that gopDuration must be less than or equal to segment_duration, and segment_duration must be divisible by gopDuration. Valid range is [2s, 20s].

All video streams in the same channel must have the same GOP size.

.google.protobuf.Duration gop_duration = 8;

Returns
Type Description
DurationOrBuilder

getGopFrameCount()

public int getGopFrameCount()

Select the GOP size based on the specified frame count. If GOP frame count is set instead of GOP duration, GOP duration will be calculated by gopFrameCount/frameRate. The calculated GOP duration must satisfy the limitations on gopDuration as well. Valid range is [60, 600].

int32 gop_frame_count = 7;

Returns
Type Description
int

The gopFrameCount.

getGopModeCase()

public VideoStream.H264CodecSettings.GopModeCase getGopModeCase()
Returns
Type Description
VideoStream.H264CodecSettings.GopModeCase

getHeightPixels()

public int getHeightPixels()

Required. The height of the video in pixels. Must be an even integer. Valid range is [180, 1080].

int32 height_pixels = 2;

Returns
Type Description
int

The heightPixels.

getProfile()

public String getProfile()

Enforces the specified codec profile. The following profiles are supported:

  • baseline
  • main (default)
  • high

    The available options are FFmpeg-compatible Profile Options. Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

string profile = 15;

Returns
Type Description
String

The profile.

getProfileBytes()

public ByteString getProfileBytes()

Enforces the specified codec profile. The following profiles are supported:

  • baseline
  • main (default)
  • high

    The available options are FFmpeg-compatible Profile Options. Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

string profile = 15;

Returns
Type Description
ByteString

The bytes for profile.

getTune()

public String getTune()

Enforces the specified codec tune. The available options are FFmpeg-compatible Encode Options Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

string tune = 16;

Returns
Type Description
String

The tune.

getTuneBytes()

public ByteString getTuneBytes()

Enforces the specified codec tune. The available options are FFmpeg-compatible Encode Options Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

string tune = 16;

Returns
Type Description
ByteString

The bytes for tune.

getVbvFullnessBits()

public int getVbvFullnessBits()

Initial fullness of the Video Buffering Verifier (VBV) buffer in bits. Must be greater than zero. The default is equal to 90% of vbv_size_bits.

int32 vbv_fullness_bits = 10;

Returns
Type Description
int

The vbvFullnessBits.

getVbvSizeBits()

public int getVbvSizeBits()

Size of the Video Buffering Verifier (VBV) buffer in bits. Must be greater than zero. The default is equal to bitrate_bps.

int32 vbv_size_bits = 9;

Returns
Type Description
int

The vbvSizeBits.

getWidthPixels()

public int getWidthPixels()

Required. The width of the video in pixels. Must be an even integer. Valid range is [320, 1920].

int32 width_pixels = 1;

Returns
Type Description
int

The widthPixels.

hasGopDuration()

public boolean hasGopDuration()

Select the GOP size based on the specified duration. The default is 2s. Note that gopDuration must be less than or equal to segment_duration, and segment_duration must be divisible by gopDuration. Valid range is [2s, 20s].

All video streams in the same channel must have the same GOP size.

.google.protobuf.Duration gop_duration = 8;

Returns
Type Description
boolean

Whether the gopDuration field is set.

hasGopFrameCount()

public boolean hasGopFrameCount()

Select the GOP size based on the specified frame count. If GOP frame count is set instead of GOP duration, GOP duration will be calculated by gopFrameCount/frameRate. The calculated GOP duration must satisfy the limitations on gopDuration as well. Valid range is [60, 600].

int32 gop_frame_count = 7;

Returns
Type Description
boolean

Whether the gopFrameCount field is set.

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

mergeFrom(VideoStream.H264CodecSettings other)

public VideoStream.H264CodecSettings.Builder mergeFrom(VideoStream.H264CodecSettings other)
Parameter
Name Description
other VideoStream.H264CodecSettings
Returns
Type Description
VideoStream.H264CodecSettings.Builder

mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public VideoStream.H264CodecSettings.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
VideoStream.H264CodecSettings.Builder
Overrides
Exceptions
Type Description
IOException

mergeFrom(Message other)

public VideoStream.H264CodecSettings.Builder mergeFrom(Message other)
Parameter
Name Description
other Message
Returns
Type Description
VideoStream.H264CodecSettings.Builder
Overrides

mergeGopDuration(Duration value)

public VideoStream.H264CodecSettings.Builder mergeGopDuration(Duration value)

Select the GOP size based on the specified duration. The default is 2s. Note that gopDuration must be less than or equal to segment_duration, and segment_duration must be divisible by gopDuration. Valid range is [2s, 20s].

All video streams in the same channel must have the same GOP size.

.google.protobuf.Duration gop_duration = 8;

Parameter
Name Description
value Duration
Returns
Type Description
VideoStream.H264CodecSettings.Builder

mergeUnknownFields(UnknownFieldSet unknownFields)

public final VideoStream.H264CodecSettings.Builder mergeUnknownFields(UnknownFieldSet unknownFields)
Parameter
Name Description
unknownFields UnknownFieldSet
Returns
Type Description
VideoStream.H264CodecSettings.Builder
Overrides

setAllowOpenGop(boolean value)

public VideoStream.H264CodecSettings.Builder setAllowOpenGop(boolean value)

Specifies whether an open Group of Pictures (GOP) structure should be allowed or not. The default is false.

bool allow_open_gop = 6;

Parameter
Name Description
value boolean

The allowOpenGop to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setAqStrength(double value)

public VideoStream.H264CodecSettings.Builder setAqStrength(double value)

Specify the intensity of the adaptive quantizer (AQ). Must be between 0 and 1, where 0 disables the quantizer and 1 maximizes the quantizer. A higher value equals a lower bitrate but smoother image. The default is 0.

double aq_strength = 14;

Parameter
Name Description
value double

The aqStrength to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setBFrameCount(int value)

public VideoStream.H264CodecSettings.Builder setBFrameCount(int value)

The number of consecutive B-frames. Must be greater than or equal to zero. Must be less than gop_frame_count if set. The default is 0.

int32 b_frame_count = 13;

Parameter
Name Description
value int

The bFrameCount to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setBPyramid(boolean value)

public VideoStream.H264CodecSettings.Builder setBPyramid(boolean value)

Allow B-pyramid for reference frame selection. This may not be supported on all decoders. The default is false.

bool b_pyramid = 12;

Parameter
Name Description
value boolean

The bPyramid to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setBitrateBps(int value)

public VideoStream.H264CodecSettings.Builder setBitrateBps(int value)

Required. The video bitrate in bits per second. Minimum value is 10,000.

  • For SD resolution (< 720p), must be <= 3,000,000 (3 Mbps).
  • For HD resolution (<= 1080p), must be <= 15,000,000 (15 Mbps).

int32 bitrate_bps = 4 [(.google.api.field_behavior) = REQUIRED];

Parameter
Name Description
value int

The bitrateBps to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setEntropyCoder(String value)

public VideoStream.H264CodecSettings.Builder setEntropyCoder(String value)

The entropy coder to use. The default is cabac.

Supported entropy coders:

  • cavlc
  • cabac

string entropy_coder = 11;

Parameter
Name Description
value String

The entropyCoder to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setEntropyCoderBytes(ByteString value)

public VideoStream.H264CodecSettings.Builder setEntropyCoderBytes(ByteString value)

The entropy coder to use. The default is cabac.

Supported entropy coders:

  • cavlc
  • cabac

string entropy_coder = 11;

Parameter
Name Description
value ByteString

The bytes for entropyCoder to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setField(Descriptors.FieldDescriptor field, Object value)

public VideoStream.H264CodecSettings.Builder setField(Descriptors.FieldDescriptor field, Object value)
Parameters
Name Description
field FieldDescriptor
value Object
Returns
Type Description
VideoStream.H264CodecSettings.Builder
Overrides

setFrameRate(double value)

public VideoStream.H264CodecSettings.Builder setFrameRate(double value)

Required. The target video frame rate in frames per second (FPS). Must be less than or equal to 60. Will default to the input frame rate if larger than the input frame rate. The API will generate an output FPS that is divisible by the input FPS, and smaller or equal to the target FPS. See Calculating frame rate for more information.

double frame_rate = 3 [(.google.api.field_behavior) = REQUIRED];

Parameter
Name Description
value double

The frameRate to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setGopDuration(Duration value)

public VideoStream.H264CodecSettings.Builder setGopDuration(Duration value)

Select the GOP size based on the specified duration. The default is 2s. Note that gopDuration must be less than or equal to segment_duration, and segment_duration must be divisible by gopDuration. Valid range is [2s, 20s].

All video streams in the same channel must have the same GOP size.

.google.protobuf.Duration gop_duration = 8;

Parameter
Name Description
value Duration
Returns
Type Description
VideoStream.H264CodecSettings.Builder

setGopDuration(Duration.Builder builderForValue)

public VideoStream.H264CodecSettings.Builder setGopDuration(Duration.Builder builderForValue)

Select the GOP size based on the specified duration. The default is 2s. Note that gopDuration must be less than or equal to segment_duration, and segment_duration must be divisible by gopDuration. Valid range is [2s, 20s].

All video streams in the same channel must have the same GOP size.

.google.protobuf.Duration gop_duration = 8;

Parameter
Name Description
builderForValue Builder
Returns
Type Description
VideoStream.H264CodecSettings.Builder

setGopFrameCount(int value)

public VideoStream.H264CodecSettings.Builder setGopFrameCount(int value)

Select the GOP size based on the specified frame count. If GOP frame count is set instead of GOP duration, GOP duration will be calculated by gopFrameCount/frameRate. The calculated GOP duration must satisfy the limitations on gopDuration as well. Valid range is [60, 600].

int32 gop_frame_count = 7;

Parameter
Name Description
value int

The gopFrameCount to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setHeightPixels(int value)

public VideoStream.H264CodecSettings.Builder setHeightPixels(int value)

Required. The height of the video in pixels. Must be an even integer. Valid range is [180, 1080].

int32 height_pixels = 2;

Parameter
Name Description
value int

The heightPixels to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setProfile(String value)

public VideoStream.H264CodecSettings.Builder setProfile(String value)

Enforces the specified codec profile. The following profiles are supported:

  • baseline
  • main (default)
  • high

    The available options are FFmpeg-compatible Profile Options. Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

string profile = 15;

Parameter
Name Description
value String

The profile to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setProfileBytes(ByteString value)

public VideoStream.H264CodecSettings.Builder setProfileBytes(ByteString value)

Enforces the specified codec profile. The following profiles are supported:

  • baseline
  • main (default)
  • high

    The available options are FFmpeg-compatible Profile Options. Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

string profile = 15;

Parameter
Name Description
value ByteString

The bytes for profile to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)

public VideoStream.H264CodecSettings.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
Parameters
Name Description
field FieldDescriptor
index int
value Object
Returns
Type Description
VideoStream.H264CodecSettings.Builder
Overrides

setTune(String value)

public VideoStream.H264CodecSettings.Builder setTune(String value)

Enforces the specified codec tune. The available options are FFmpeg-compatible Encode Options Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

string tune = 16;

Parameter
Name Description
value String

The tune to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setTuneBytes(ByteString value)

public VideoStream.H264CodecSettings.Builder setTuneBytes(ByteString value)

Enforces the specified codec tune. The available options are FFmpeg-compatible Encode Options Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

string tune = 16;

Parameter
Name Description
value ByteString

The bytes for tune to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setUnknownFields(UnknownFieldSet unknownFields)

public final VideoStream.H264CodecSettings.Builder setUnknownFields(UnknownFieldSet unknownFields)
Parameter
Name Description
unknownFields UnknownFieldSet
Returns
Type Description
VideoStream.H264CodecSettings.Builder
Overrides

setVbvFullnessBits(int value)

public VideoStream.H264CodecSettings.Builder setVbvFullnessBits(int value)

Initial fullness of the Video Buffering Verifier (VBV) buffer in bits. Must be greater than zero. The default is equal to 90% of vbv_size_bits.

int32 vbv_fullness_bits = 10;

Parameter
Name Description
value int

The vbvFullnessBits to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setVbvSizeBits(int value)

public VideoStream.H264CodecSettings.Builder setVbvSizeBits(int value)

Size of the Video Buffering Verifier (VBV) buffer in bits. Must be greater than zero. The default is equal to bitrate_bps.

int32 vbv_size_bits = 9;

Parameter
Name Description
value int

The vbvSizeBits to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.

setWidthPixels(int value)

public VideoStream.H264CodecSettings.Builder setWidthPixels(int value)

Required. The width of the video in pixels. Must be an even integer. Valid range is [320, 1920].

int32 width_pixels = 1;

Parameter
Name Description
value int

The widthPixels to set.

Returns
Type Description
VideoStream.H264CodecSettings.Builder

This builder for chaining.