Skip to content

Instantly share code, notes, and snippets.

View gen2brain's full-sized avatar
💭
Busy

Milan Nikolic gen2brain

💭
Busy
  • Belgrade, Serbia
View GitHub Profile
diff --git a/client.go b/client.go
index bcf8d5b..0888b01 100644
--- a/client.go
+++ b/client.go
@@ -4,25 +4,34 @@ import (
"context"
"fmt"
"log"
+ "net"
This file has been truncated, but you can view the full file.
diff -ur x264-go/encode.go x264-go.new/encode.go
--- x264-go/encode.go 2020-04-20 16:40:00.859331841 +0200
+++ x264-go.new/encode.go 2020-06-06 15:48:52.593083554 +0200
@@ -82,8 +82,9 @@
param.IWidth = int32(e.opts.Width)
param.IHeight = int32(e.opts.Height)
-
param.ICsp = e.csp
+
type Param struct {
// CPU flags.
Cpu uint32
// Encode multiple frames in parallel.
IThreads int32
// Multiple threads for lookahead analysis.
ILookaheadThreads int32
// Whether to use slice-based threading.
BSlicedThreads int32
// Whether to allow non-deterministic optimizations when threaded.
package main
import (
"bufio"
"encoding/csv"
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"log"
package main
import (
"bufio"
"context"
"flag"
"fmt"
"io"
"log"
"net/http"
00000000000adff6 T _AQOfflineMixerConnectAudioQueue
00000000000ae0d8 T _AQOfflineMixerDisconnectAudioQueue
00000000000adf65 T _AQOfflineMixerDispose
00000000000ae825 T _AQOfflineMixerGetProperty
00000000000ae789 T _AQOfflineMixerGetPropertySize
00000000000addc7 T _AQOfflineMixerNew
00000000000ae0e4 T _AQOfflineMixerRender
00000000000aed82 T _AQOfflineMixerReset
00000000000aea67 T _AQOfflineMixerSetProperty
0000000000014b18 T _AUEventListenerAddEventType
This file has been truncated, but you can view the full file.
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-multilib
DESCRIPTION="A simple and easy-to-use library to learn videogames programming"
HOMEPAGE="http://www.raylib.com/"
// GLFW single file
#include "external/glfw/src/context.c"
#include "external/glfw/src/init.c"
#include "external/glfw/src/input.c"
#include "external/glfw/src/monitor.c"
#include "external/glfw/src/vulkan.c"
#include "external/glfw/src/window.c"
// -D_GLFW_COCOA -D_GLFW_USE_CHDIR -D_GLFW_USE_MENUBAR -D_GLFW_USE_RETINA
This file has been truncated, but you can view the full file.