comparison src/ca/randelshofer/AVIOutputStream.java @ 58:f2c5f1fca9a7

added javadoc capability
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Dec 2011 21:53:52 -0600
parents 784a3f4e6202
children 302d5e9ad120
comparison
equal deleted inserted replaced
57:19831877eaed 58:f2c5f1fca9a7
440 * Creates a new AVI file with the specified video format and 440 * Creates a new AVI file with the specified video format and
441 * frame rate. The video has 24 bits per pixel. 441 * frame rate. The video has 24 bits per pixel.
442 * 442 *
443 * @param file the output file 443 * @param file the output file
444 * @param format Selects an encoder for the video format. 444 * @param format Selects an encoder for the video format.
445 * @param bitsPerPixel the number of bits per pixel. 445 *
446 * @exception IllegalArgumentException if videoFormat is null or if 446 * @exception IllegalArgumentException if videoFormat is null or if
447 * frame rate is <= 0 447 * frame rate is <= 0
448 */ 448 */
449 public AVIOutputStream(File file, VideoFormat format) throws IOException { 449 public AVIOutputStream(File file, VideoFormat format) throws IOException {
450 this(file,format,24); 450 this(file,format,24);