Last active
January 30, 2019 14:11
-
-
Save f3ndot/d354647d5b54181c382c5ae7ca0fcd0b to your computer and use it in GitHub Desktop.
Trying to figure out why this wont work on Ubuntu 18.10 (Cosmic)
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> | |
#include <stdlib.h> | |
#include <aom/aom_decoder.h> | |
#include <aom/aomdx.h> | |
// This is a minimal example of trying to import libaom's decoding functionality, as seen in | |
// ffmpeg/libavformat's source code. First ensure libaom-dev is installed on your machine with | |
// a version greater than or equal to 1.x | |
// | |
// sudo apt install libaom-dev | |
// | |
// Then simply compile: | |
// | |
// gcc -Wall -g libaom_import_poc.c | |
// | |
int main() | |
{ | |
printf("Hello world!\n"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I keep getting