mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-15 20:30:00 +01:00
indenting
This commit is contained in:
@@ -1827,6 +1827,7 @@ void yuv444_yvu444_1plane(
|
|||||||
void yuv_interpolate_frames( uint8_t *dst, uint8_t *a, uint8_t *b, const int len, const float frac )
|
void yuv_interpolate_frames( uint8_t *dst, uint8_t *a, uint8_t *b, const int len, const float frac )
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
#pragma omp simd
|
||||||
for( i = 0; i < len; i ++ ) {
|
for( i = 0; i < len; i ++ ) {
|
||||||
dst[i] = a[i] + ( frac * ( b[i] - a[i] ) );
|
dst[i] = a[i] + ( frac * ( b[i] - a[i] ) );
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -146,5 +146,4 @@ void yuv444_yvu444_1plane(
|
|||||||
void verify_CCIR_auto(int a, int b, VJFrame *dst );
|
void verify_CCIR_auto(int a, int b, VJFrame *dst );
|
||||||
int yuv_which_scaler();
|
int yuv_which_scaler();
|
||||||
void yuv_interpolate_frames( uint8_t *dst, uint8_t *a, uint8_t *b, const int len, const float frac );
|
void yuv_interpolate_frames( uint8_t *dst, uint8_t *a, uint8_t *b, const int len, const float frac );
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user