lameonj.encoder.blade
Interface BeConfigAAC

All Superinterfaces:
BeConfig

public interface BeConfigAAC
extends BeConfig

The BeConfigAAC is the interface implemented by the BE_CONFIG internal class wrapper with the AAC mode.
Access the internal BE_CONFIG structure publishing the aac attribute (AAC mode).

See Also:
LAMEOnJBlade.newBeConfigAAC()

Method Summary
 BE_CONFIG.STRUCT_FORMAT.STRUCT_AAC getAac()
          Returns the internal value of the BE_CONFIG.STRUCT_FORMAT.aac attribute of the internal BE_CONFIG structure.
 byte getByEncodingMethod()
          Current implementation calls: getAac().getByEncodingMethod();
 byte getByMode()
          Current implementation calls: return getAac().getByMode();
 int getDwSampleRate()
          Current implementation calls: return getAac().getDwSampleRate();
 short getWBitrate()
          Current implementation calls: return getAac().getWBitrate();
 void setByEncodingMethod(byte byEncodingMethod)
          Current implementation calls: getAac().setByEncodingMethod(byEncodingMethod);
 void setByMode(byte byMode)
          Current implementation calls: getAac().setByMode(byMode);
 void setDwSampleRate(int dwSampleRate)
          Current implementation calls: getAac().setDwSampleRate(dwSampleRate);
 void setWBitrate(short wBitrate)
          Current implementation calls: getAac().setWBitrate(wBitrate);
 
Methods inherited from interface lameonj.encoder.blade.BeConfig
getBE_CONFIG
 

Method Detail

getAac

BE_CONFIG.STRUCT_FORMAT.STRUCT_AAC getAac()
Returns the internal value of the BE_CONFIG.STRUCT_FORMAT.aac attribute of the internal BE_CONFIG structure.

Returns:
the acc attribute value.

getDwSampleRate

int getDwSampleRate()
Current implementation calls:
return getAac().getDwSampleRate();

See Also:
BE_CONFIG.STRUCT_FORMAT.STRUCT_AAC.getDwSampleRate()

setDwSampleRate

void setDwSampleRate(int dwSampleRate)
Current implementation calls:
getAac().setDwSampleRate(dwSampleRate);

See Also:
BE_CONFIG.STRUCT_FORMAT.STRUCT_AAC.setDwSampleRate(int)

getByMode

byte getByMode()
Current implementation calls:
return getAac().getByMode();

See Also:
BE_CONFIG.STRUCT_FORMAT.STRUCT_AAC.getByMode()

setByMode

void setByMode(byte byMode)
Current implementation calls:
getAac().setByMode(byMode);

See Also:
BE_CONFIG.STRUCT_FORMAT.STRUCT_AAC.setByMode(byte)

getWBitrate

short getWBitrate()
Current implementation calls:
return getAac().getWBitrate();

See Also:
BE_CONFIG.STRUCT_FORMAT.STRUCT_AAC.getWBitrate()

setWBitrate

void setWBitrate(short wBitrate)
Current implementation calls:
getAac().setWBitrate(wBitrate);

See Also:
BE_CONFIG.STRUCT_FORMAT.STRUCT_AAC.setWBitrate(short)

getByEncodingMethod

byte getByEncodingMethod()
Current implementation calls:
getAac().getByEncodingMethod();

See Also:
BE_CONFIG.STRUCT_FORMAT.STRUCT_AAC.getByEncodingMethod()

setByEncodingMethod

void setByEncodingMethod(byte byEncodingMethod)
Current implementation calls:
getAac().setByEncodingMethod(byEncodingMethod);

See Also:
BE_CONFIG.STRUCT_FORMAT.STRUCT_AAC.setByEncodingMethod(byte)


Copyright © 2006-2008 Jose Maria Arranz. All Rights Reserved.