Skip to content

Commit

Permalink
Fix issues with Javadoc in Maven build (pull #2177)
Browse files Browse the repository at this point in the history
  • Loading branch information
msmuenchen authored Jan 27, 2024
1 parent 1bf4e35 commit 6e94eae
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,10 @@
<link>https://jogamp.org/deployment/v2.3.2/javadoc/jogl/javadoc</link>
<link>http://junit.org/junit4/javadoc/4.13.2</link>
</links>
<sourceFileExcludes>
<exclude>org/bytedeco/javacv/FlyCaptureFrameGrabber.java</exclude>
<exclude>org/bytedeco/javacv/FFmpegLockCallback.java</exclude>
</sourceFileExcludes>
</configuration>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/bytedeco/javacv/FFmpegLogCallback.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class FFmpegLogCallback extends LogCallback {

static final FFmpegLogCallback instance = new FFmpegLogCallback().retainReference();

/** Returns an instance that can be used with {@link #setLogCallback(LogCallback)}. */
/** Returns an instance that can be used with {@link org.bytedeco.ffmpeg.global.avutil#setLogCallback(LogCallback)}. */
public static FFmpegLogCallback getInstance() {
return instance;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/bytedeco/javacv/Frame.java
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public <I extends Indexer> I createIndexer(boolean direct, int i) {
* @return A deep copy of this frame.
* @see {@link #cloneBufferArray}
*
* @author Extension proposed by Dragos Dutu
* Extension proposed by Dragos Dutu
* */
@Override
public Frame clone() {
Expand Down
12 changes: 5 additions & 7 deletions src/main/java/org/bytedeco/javacv/PS3EyeFrameGrabber.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public PS3EyeFrameGrabber() throws Exception {
}

/** Color mode, VGA resolution, 60 FPS frame rate.
* @param system wide camera index
* @param cameraIndex system wide camera index
*/
public PS3EyeFrameGrabber(int cameraIndex) throws Exception {
this(cameraIndex, 640, 480, 60);
Expand Down Expand Up @@ -274,9 +274,8 @@ public Frame grab() throws Exception {
}


/** Start camera first (before grabbing).
*
* @return success/failure (true/false)
/**
* Start camera first (before grabbing).
*/
public void start() throws Exception {
boolean b;
Expand All @@ -301,9 +300,8 @@ public void start() throws Exception {
}


/** Stop camera. It can be re-started if needed.
*
* @return success/failure (true/false)
/**
* Stop camera. It can be re-started if needed.
*/
public void stop() throws Exception {
boolean b = camera.stopCamera();
Expand Down

0 comments on commit 6e94eae

Please sign in to comment.