Java Doc for AbstractAudio.java in  » 6.0-JDK-Modules » java-3d » com » db » media » audio » dsp » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » java 3d » com.db.media.audio.dsp 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.db.media.audio.dsp.AbstractAudio

AbstractAudio
abstract public class AbstractAudio (Code)


Field Summary
final public static  intALLTYPES
    
final public static  intMONITOR
    
final public static  intNOTYPE
    
final public static  intPROCESSOR
    
final public static  intSAMPLEBUFFERSIZE
    
final public static  intSINK
    
final public static  intSOURCE
    
public  AbstractAudionext
    
public  AbstractAudioprevious
    

Constructor Summary
public  AbstractAudio(String name, int type)
     AbstractAudio class constructor NOTE: name and type are for informational purposes only and serve to identify a specific device.

Method Summary
public  voiddoReset()
     Called to perform a reset operation on all participating device stages.
public  booleanequals(AbstractAudio a)
     Function to determine if one AbstractAudio device is the same as another.
public  booleangetByPass()
     Return the current by pass state of this device.
public  StringgetName()
    
public  intgetNumberOfChannels()
     Retrieve the number of channel of the signal path.
abstract public  intgetSamples(short[] buffer, int length)
     This method must be iplemented by all devices that extend the AbstractAudio class.
public  intgetSamplingRate()
     Retrieve the sample rate of the signal path.
public  voidhexo(int i)
    
public  voidhexo(String s, int i)
    
public static  voidhexo(long i)
    
public static  voidhexo(String s, long i)
    
public  voidminMaxChannels(int min, int max, int preferred)
     Called to find the min, preferred and max values for the number of channels the devices in the signal path find acceptable.
public  voidminMaxSamplingRate(int min, int max, int preferred)
     Called to find the min, preferred and max values for sample rate the devices in the signal path find acceptable.
protected  voidnegotiateNumberOfChannels()
     Called to instigate number of channel negotiation in the signal chain of AbstractAudio device. First it causes propagation towards the sink in the signal chain. Next, the default number of channels value is set and the negotiation is begun by a call to minMaxChannels.
protected  voidnegotiateSamplingRate()
     Called to instigate sample rate negotiation in the signal chain of AbstractAudio device. First it causes propagation towards the sink in the signal chain. Next, the default sample rate values are set and the negotiation is begun by a call to minMaxSamplingRate.
public static  voido(String s)
    
protected  voidpropagateReset()
    
protected  voidreset()
     Override this method if reset functionality is required for your AbstractAudio device derivative.
public  voidsetByPass(boolean byPass)
    
public  voidsetChannelsRecursive(int ch)
     Called to force the specified number of channels to be used in the device chain.
protected  voidsetNumberOfChannels(int channels)
    
protected  voidsetSamplingRate(int s)
    
public  voidsetSamplingRateRecursive(int sr)
     Causes all the device stages to have their sampling rate set to the specified value.
public  StringtoString()
    
public static  StringtypeString(int type)
    

Field Detail
ALLTYPES
final public static int ALLTYPES(Code)



MONITOR
final public static int MONITOR(Code)



NOTYPE
final public static int NOTYPE(Code)



PROCESSOR
final public static int PROCESSOR(Code)



SAMPLEBUFFERSIZE
final public static int SAMPLEBUFFERSIZE(Code)



SINK
final public static int SINK(Code)



SOURCE
final public static int SOURCE(Code)



next
public AbstractAudio next(Code)



previous
public AbstractAudio previous(Code)




Constructor Detail
AbstractAudio
public AbstractAudio(String name, int type)(Code)
AbstractAudio class constructor NOTE: name and type are for informational purposes only and serve to identify a specific device.
Parameters:
  String - name is the name given to this device int type is one of the device types listed above




Method Detail
doReset
public void doReset()(Code)
Called to perform a reset operation on all participating device stages.



equals
public boolean equals(AbstractAudio a)(Code)
Function to determine if one AbstractAudio device is the same as another. Equality is assumed if name and type match. This method is used in the LinkedListVector class to find specific devices on the list. boolean true if the name and type match, false otherwise.



getByPass
public boolean getByPass()(Code)
Return the current by pass state of this device. boolean true if this stage of processing is bypassed andfalse otherwise.



getName
public String getName()(Code)
Return the name of this AbstractAudio device String containing device's assigned name



getNumberOfChannels
public int getNumberOfChannels()(Code)
Retrieve the number of channel of the signal path. If not already set, this call with instigate negotiation. int containing the agreed upon number of channels



getSamples
abstract public int getSamples(short[] buffer, int length)(Code)
This method must be iplemented by all devices that extend the AbstractAudio class. This is the method by which audio samples are moved between device stages. Call the getSamples() method on the device previous to this device in the signal path causes samples to be pull from it. short [] buffer is a buffer that this stage of processingshould fill with data for subsequent return to calling code. int length is the number of samples that are requested int indicating the number of samples available or -1 ifthe end of input or file has been reached.



getSamplingRate
public int getSamplingRate()(Code)
Retrieve the sample rate of the signal path. If not already set, this call with instigate negotiation. int containing the agreed upon sample rate



hexo
public void hexo(int i)(Code)
Hex string display method int i is the value to convert to a hex string



hexo
public void hexo(String s, int i)(Code)
Labeled hex string display method
Parameters:
  String - s is the label to prepend to the hex string int i is the value to convert to a hex string



hexo
public static void hexo(long i)(Code)
Hex string display method long i is the value to convert to a hex string



hexo
public static void hexo(String s, long i)(Code)
Labeled hex string display method
Parameters:
  String - s is the label to prepend to the hex string long i is the value to convert to a hex string



minMaxChannels
public void minMaxChannels(int min, int max, int preferred)(Code)
Called to find the min, preferred and max values for the number of channels the devices in the signal path find acceptable.
Parameters:
  MyInt - min is the wrapped minimum number of channelsthis signal path can tolerate.
Parameters:
  MyInt - max is the wrapped maximum number of channelsthis signal path can tolerate.
Parameters:
  MyInt - preferred is the wrapped number of channels thissignal path prefers.



minMaxSamplingRate
public void minMaxSamplingRate(int min, int max, int preferred)(Code)
Called to find the min, preferred and max values for sample rate the devices in the signal path find acceptable.
Parameters:
  MyInt - min is the wrapped minimum value of sampling ratethis signal path can tolerate.
Parameters:
  MyInt - max is the wrapped maximum value of sampling ratethis signal path can tolerate.
Parameters:
  MyInt - preferred is the wrapped sampling rate value thissignal path prefers.



negotiateNumberOfChannels
protected void negotiateNumberOfChannels()(Code)
Called to instigate number of channel negotiation in the signal chain of AbstractAudio device. First it causes propagation towards the sink in the signal chain. Next, the default number of channels value is set and the negotiation is begun by a call to minMaxChannels. Upon return from negotiation, some checking is done to see that the negotiated channels is acceptable and then setChannelsRecursive is called to force the agreed upon number of channels into each of the AbstractAudio devices in the signal chain.



negotiateSamplingRate
protected void negotiateSamplingRate()(Code)
Called to instigate sample rate negotiation in the signal chain of AbstractAudio device. First it causes propagation towards the sink in the signal chain. Next, the default sample rate values are set and the negotiation is begun by a call to minMaxSamplingRate. Upon return from negotiation, some checking is done to see that the negotiated rate is acceptable and then setSamplingRateRecursive is called to force the agreed upon sample rate into each of the AbstractAudio devices in the signal chain.



o
public static void o(String s)(Code)
Shortcut method for system.out.println
Parameters:
  String - s is the string to write to standard out



propagateReset
protected void propagateReset()(Code)
Propagate reset call to all processing stages



reset
protected void reset()(Code)
Override this method if reset functionality is required for your AbstractAudio device derivative. If not overridden nothing will happen in this device when a reset operation occurs.



setByPass
public void setByPass(boolean byPass)(Code)
Used to set the bypass state of this device boolean byPass if true stage will be bypassed.



setChannelsRecursive
public void setChannelsRecursive(int ch)(Code)
Called to force the specified number of channels to be used in the device chain. This causes a propagation towards the source in the signal chain and then on return sets the number of channels variable in each stage of the chain. int ch is the number of channels to set either 1 for mono or2 for stereo.



setNumberOfChannels
protected void setNumberOfChannels(int channels)(Code)
Sets the number of channels for this device if possible int channels is the number of channels to set



setSamplingRate
protected void setSamplingRate(int s)(Code)
Sets the sample rate for this device if possible int s is the sample rate to set



setSamplingRateRecursive
public void setSamplingRateRecursive(int sr)(Code)
Causes all the device stages to have their sampling rate set to the specified value. int sr is the sampling rate that was negotiated and needstherefore to be set into each stage.



toString
public String toString()(Code)
Convert AbstractAudio parameters to a string for display String containing description of this device



typeString
public static String typeString(int type)(Code)
Static method for displaying a type string given the device type int type is the type of this AbstractAudio device



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.