Skip to content

Commit

Permalink
renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
vzhn committed Sep 23, 2019
1 parent 82bf9a7 commit 7bcb5e2
Show file tree
Hide file tree
Showing 2 changed files with 198 additions and 198 deletions.
198 changes: 155 additions & 43 deletions src/main/java/me/vzhilin/bstreamer/server/streaming/Filesystem.java
Original file line number Diff line number Diff line change
@@ -1,63 +1,175 @@
package me.vzhilin.bstreamer.server.streaming;

import io.netty.buffer.ByteBuf;
import io.netty.buffer.PooledByteBufAllocator;
import me.vzhilin.bstreamer.server.ServerContext;
import me.vzhilin.bstreamer.server.stat.GroupStatistics;
import me.vzhilin.bstreamer.server.streaming.picture.AbstractPictureSource;
import me.vzhilin.bstreamer.server.streaming.picture.DigiRain;
import me.vzhilin.bstreamer.server.streaming.picture.PictureSourceAttributes;
import me.vzhilin.bstreamer.server.streaming.picture.Typewriter;
import me.vzhilin.bstreamer.server.media.AVCCExtradataParser;
import me.vzhilin.bstreamer.server.streaming.base.PullSource;
import me.vzhilin.bstreamer.server.streaming.file.FileSourceAttributes;
import me.vzhilin.bstreamer.server.streaming.file.MediaPacket;
import me.vzhilin.bstreamer.server.streaming.file.SourceDescription;
import me.vzhilin.bstreamer.util.AppRuntime;
import me.vzhilin.bstreamer.util.PropertyMap;
import org.bytedeco.javacpp.*;

import java.awt.*;
import java.awt.image.BufferedImage;
import java.lang.management.ManagementFactory;
import java.lang.management.OperatingSystemMXBean;
import java.util.Date;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.LinkedList;
import java.util.Queue;

public class Filesystem extends AbstractPictureSource {
private final GroupStatistics groupStat;
private final GroupStatistics totalStat;
private final int width;
private final int height;
private final DigiRain dr;
import static org.bytedeco.javacpp.avcodec.*;
import static org.bytedeco.javacpp.avformat.*;

public Filesystem(ServerContext context, PropertyMap properties) {
super(context, properties);
public class Filesystem implements PullSource {
private static final String WORKDIR_VIDEO = "video";
private static final String WORKDIR_SRC_DEPLOY_VIDEO = "src/deploy/video";

width = properties.getInt(PictureSourceAttributes.PICTURE_WIDTH);
height = properties.getInt(PictureSourceAttributes.PICTURE_HEIGHT);
private boolean wasClosed;
private SourceDescription desc;
private Queue<MediaPacket> packetQueue = new LinkedList<>();
private AVPacket pk;
private AVFormatContext pAvfmtCtx;

totalStat = context.getStat().getTotal();
groupStat = context.getStat().get(properties);
dr = new DigiRain(width, height, 25);
public Filesystem(ServerContext context, PropertyMap sourceProperties) throws IOException {
String dirPath = sourceProperties.getString(FileSourceAttributes.DIR);
File dir = probeDirectories(dirPath);

File videoFile = new File(dir, sourceProperties.getString(FileSourceAttributes.FILE));
if (videoFile.exists()) {
open(videoFile);
} else {
throw new FileNotFoundException(videoFile.getAbsolutePath());
}
}

private File probeDirectories(String dirPath) {
File dir = new File(dirPath);
if (!dir.isAbsolute()) {
dir = new File(AppRuntime.APP_PATH, dirPath);
}

if (!dir.exists()) {
dir = new File(WORKDIR_VIDEO);
}

if (!dir.exists()) {
dir = new File(WORKDIR_SRC_DEPLOY_VIDEO);
}

return dir;
}

private void open(File file) throws IOException {
pAvfmtCtx = new avformat.AVFormatContext(null);
int r = avformat_open_input(pAvfmtCtx, new BytePointer(file.getAbsolutePath()), null, null);
if (r < 0) {
pAvfmtCtx.close();
wasClosed = true;
throw new IOException("avformat_open_input error: " + r);
}
r = avformat_find_stream_info(pAvfmtCtx, (PointerPointer) null);
if (r < 0) {
wasClosed = true;
avformat_close_input(pAvfmtCtx);
pAvfmtCtx.close();
throw new IOException("error: " + r);
}
pk = new avcodec.AVPacket();
AVStream avStream = getVideoStream();
if (avStream == null) {
close();
throw new IOException("h264 stream not found");
}
int videoStreamId = avStream.index();
avutil.AVRational streamTimebase = avStream.time_base();
avutil.AVRational avgFrameRate = avStream.avg_frame_rate();
avcodec.AVCodecParameters cp = avStream.codecpar();
byte[] extradataBytes = new byte[cp.extradata_size()];
cp.extradata().get(extradataBytes);
AVCCExtradataParser extradata = new AVCCExtradataParser(extradataBytes);
byte[] sps = extradata.getSps();
byte[] pps = extradata.getPps();
desc = new SourceDescription();
desc.setSps(sps);
desc.setPps(pps);
desc.setTimebase(streamTimebase);
desc.setAvgFrameRate(avgFrameRate);
desc.setVideoStreamId(videoStreamId);
fillQueue();
}

private AVStream getVideoStream() {
int ns = pAvfmtCtx.nb_streams();
for (int i = 0; i < ns; i++) {
AVStream pstream = pAvfmtCtx.streams(i);
avcodec.AVCodecParameters cp = pstream.codecpar();
if (cp.codec_id() == AV_CODEC_ID_H264) {
return pstream;
}
}
return null;
}

@Override
public SourceDescription getDesc() {
return desc;
}

@Override
protected void drawPicture(BufferedImage image) {
dr.tick();
public boolean hasNext() {
return !packetQueue.isEmpty();
}

Graphics gc = image.getGraphics();
gc.setColor(Color.BLACK);
gc.fillRect(0, 0, image.getWidth(), image.getHeight());
drawStat(gc);
@Override
public MediaPacket next() {
MediaPacket pkt = packetQueue.poll();
if (packetQueue.isEmpty()) {
fillQueue();
}
return pkt;
}

private void drawStat(Graphics gc) {
Font font = gc.getFont();
dr.paint(gc);
gc.setFont(font);
private void fillQueue() {
while (packetQueue.size() < 10) {
if (av_read_frame(pAvfmtCtx, pk) < 0) {
return;
}

OperatingSystemMXBean bean = ManagementFactory.getOperatingSystemMXBean();
gc.setColor(Color.LIGHT_GRAY);
gc.fillRect(0, 0, 220, 90);
if (pk.stream_index() == desc.getVideoStreamId()) {
long pts = pk.pts();
long dts = pk.dts();
boolean isKey = (pk.flags() & AV_PKT_FLAG_KEY) != 0;
int sz = pk.size();
byte[] data = new byte[sz];
pk.data().get(data);
int offset = 0;
while (offset < data.length) {
int avccLen =
((data[offset] & 0xff) << 24) +
((data[offset + 1] & 0xff) << 16) +
((data[offset + 2] & 0xff) << 8) +
(data[offset + 3] & 0xff);
ByteBuf payload = PooledByteBufAllocator.DEFAULT.buffer(avccLen, avccLen);
payload.writeBytes(data, offset + 4, avccLen);
packetQueue.offer(new MediaPacket(pts, dts, isKey, payload));
offset += (avccLen + 4);
}
}

gc.setColor(Color.BLACK);
Typewriter tw = new Typewriter(gc);
av_packet_unref(pk);
}
}

tw.drawString(new Date().toString());
tw.drawString("nframe: " + getFrameNumber());
tw.drawString("connections: " + groupStat.connections());
tw.drawString("total_connections: " + totalStat.connections());
tw.drawString("load_average: " + bean.getSystemLoadAverage());
@Override
public void close() {
if (!wasClosed) {
wasClosed = true;
avformat_close_input(pAvfmtCtx);
packetQueue.forEach(mediaPacket -> mediaPacket.getPayload().release());
packetQueue.clear();
pAvfmtCtx.close();
pk.close();
}
}
}
Loading

0 comments on commit 7bcb5e2

Please sign in to comment.