mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
315758aa15
* 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>
10 lines
189 B
C
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;
|
|
} |