shithub: rtmp

ref: 03ea1099fb54ca5a57a302b68d1519f9dee80a83
dir: /main.c/

View raw version
#include <u.h>
#include <libc.h>
#include <thread.h>
#include <bio.h>
#include "ivf.h"
#include "rtmp.h"
#include "util.h"

int mainstacksize = 65536;
int debug = 0;

static void
usage(void)
{
	fprint(2, "usage: %s [-a AUDIO] URL\n", argv0);
	threadexitsall("usage");
}

void
threadmain(int argc, char **argv)
{
	Biobuf *a, v;
	u64int ns;
	ulong sid;
	IVFrame f;
	IVF ivf;
	RTMP *r;

	a = nil;
	ARGBEGIN{
	case 'd':
		debug++;
		break;
	case 'a':
		if((a = Bopen(EARGF(usage()), OREAD)) == nil)
			sysfatal("%r");
		break;
	default:
		usage();
	}ARGEND

	if(argc != 1)
		usage();
	if(Binit(&v, 0, OREAD) != 0 || ivfopen(&v, &ivf) != 0)
		sysfatal("%r");
	if(strcmp(ivf.type, "AVC1") != 0)
		sysfatal("not H.264");

	srand(time(nil));
	if((r = rtmpdial(argv[0])) == nil)
		sysfatal("%r");

	if(rtmpstream(r, &sid) != 0 ||
	   rtmppublish(r, sid, PubLive, nil) != 0 ||
	   rtmpmeta(r, sid, VcodecH264, ivf.w, ivf.h, -1) != 0){
		sysfatal("%r");
	}

	memset(&f, 0, sizeof(f));
	for(;;){
		if(ivfread(&v, &f) != 0)
			sysfatal("%r");
		if(f.sz == 0)
			break;
		ns = ivfns(&ivf, f.ts)/1000000ULL;
		if(rtmpdata(r, sid, ns, Tvideo, f.buf, f.sz) != 0){
			fprint(2, "%r\n");
			break;
		}
	}

	if(a != nil)
		Bterm(a);
	rtmpclose(r);

	threadexitsall(nil);
}