This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2015-08-26 09:42:14 +0200 | |
./configure | |
--disable-debug | |
--disable-shared | |
--disable-indev=jack | |
--prefix=/usr/local/Cellar/libav/11.4_1 | |
--enable-gpl | |
--enable-nonfree | |
--enable-version3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#define BUF 4096 | |
static volatile int run = 0; | |
int main(char argc, char *argv[]) | |
{ | |
unsigned char buf[BUF]; | |
FILE *fn[argc - 1]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <string.h> | |
#include <errno.h> | |
#include <stdio.h> | |
#include <sysexits.h> | |
#include <unistd.h> | |
#include <stdint.h> | |
#include <limits.h> | |
#include <asm-generic/mman.h> |