Takes in the list of controls to use as progress controls. super(null, true, null); frc = frameRate; brc = bitRate; vpc = videoProps; apc = audioProps; vc = videoCodec; ac = audioCodec;
super(null, true, null); frc = frameRate; brc = bitRate; vpc = videoProps; apc = audioProps; vc = videoCodec; ac = audioCodec;
return ac;
Returns the audio properties control. return apc;
return apc;
Returns the bit rate control. return brc;
return brc;
Returns an array that contains all the progress controls. if (controls == null) { controls = new Control[6]; controls[0] = frc; controls[1] = brc; controls[2] = vpc; controls[3] = apc; controls[4] = ac; controls[5] = vc; } return controls;
if (controls == null) { controls = new Control[6]; controls[0] = frc; controls[1] = brc; controls[2] = vpc; controls[3] = apc; controls[4] = ac; controls[5] = vc; } return controls;
Returns the frame rate control. return frc;
return frc;
return vc;
Returns the video properties control. return vpc;
return vpc;