pantry/projects/videolan.org/x264/test.c
Andrew 315758aa15
videolan.org/x264 (#2180)
* new file:   projects/videolan.org/x264/package.yml
	new file:   projects/videolan.org/x264/test.c

* add gcc in build deps

* version (hardcoded)

* add fixme for version woes

---------

Co-authored-by: Jacob Heider <jacob@tea.xyz>
2023-06-28 16:07:16 -04:00

10 lines
189 B
C

#include <stdint.h>
#include <x264.h>
int main() {
x264_picture_t pic;
x264_picture_init(&pic);
x264_picture_alloc(&pic, 1, 1, 1);
x264_picture_clean(&pic);
return 0;
}