Skip to content
Snippets Groups Projects
Commit 2780abe6 authored by Lyubomir Marinov's avatar Lyubomir Marinov
Browse files

Adds a javadoc to clarify MediaDeviceSession's method getProcessor().

parent c1d66488
No related branches found
No related tags found
No related merge requests found
......@@ -1021,7 +1021,18 @@ protected List<Player> getPlayers()
/**
* Gets the JMF <tt>Processor</tt> which transcodes the <tt>MediaDevice</tt>
* of this instance into the format of this instance.
* of this instance into the format of this instance. If the
* <tt>Processor</tt> question does not exist, the method will create it.
* <p>
* <b>Warning</b>: Because the method will unconditionally create the
* <tt>Processor</tt> if it does not exist and because the creation of the
* <tt>Processor</tt> will connect to the <tt>CaptureDevice</tt> of this
* instance, extreme care is to be taken when invoking the method in order
* to ensure that the existence of the <tt>Processor</tt> is really in
* accord with the rest of the state of this instance. Overall, the method
* is to be considered private and is to not be invoked outside the
* <tt>MediaDeviceSession</tt> class.
* </p>
*
* @return the JMF <tt>Processor</tt> which transcodes the
* <tt>MediaDevice</tt> of this instance into the format of this instance
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment