Skip to content

Commit

Permalink
add release binary files.
Browse files Browse the repository at this point in the history
  • Loading branch information
rockcarry committed Jun 30, 2017
1 parent 6b744b3 commit d97ee44
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
*.o
*.dll
*.exe
!release/*

2 changes: 1 addition & 1 deletion color.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ void yuv_to_rgb(int y, int u, int v, BYTE *r, BYTE *g, BYTE *b)

void rgb_to_yuv(BYTE r, BYTE g, BYTE b, int *y, int *u, int *v)
{
*y = ((19595 * r + 38470 * g + 7471 * b) >> 16) - 128;
*y = (( 19595 * r + 38470 * g + 7471 * b) >> 16) - 128;
*u = ((-11076 * r - 21692 * g) >> 16) + (b >> 1);
*v = ((-27460 * g - 5308 * b) >> 16) + (r >> 1);
}
Expand Down
Binary file added release/ffjpeg.dll
Binary file not shown.
Binary file added release/ffjpeg.exe
Binary file not shown.

0 comments on commit d97ee44

Please sign in to comment.