Skip to content

Commit

Permalink
fix: update mjpeg handler2
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhouYixun committed Nov 12, 2022
1 parent 138f25c commit dedc7c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
import java.io.*;
import java.nio.ByteBuffer;

@Slf4j
/**
* mjpeg input stream handler
* {@link https://github.com/sarxos/webcam-capture/blob/master/webcam-capture/src/main/java/com/github/sarxos/webcam/util/MjpegInputStream.java}
*/
@Slf4j
public class MjpegInputStream extends DataInputStream {
private final byte[] SOI_MARKER = {(byte) 0xFF, (byte) 0xD8};
private final byte[] EOI_MARKER = {(byte) 0xFF, (byte) 0xD9};
Expand Down

0 comments on commit dedc7c7

Please sign in to comment.