Drop unused kvz_videoframe_get_cu functions

This commit is contained in:
Arttu Ylä-Outinen 2017-05-23 15:14:09 +03:00
parent f5eef7f33c
commit 13d2fdbd21
2 changed files with 0 additions and 17 deletions

View file

@ -87,17 +87,3 @@ int kvz_videoframe_free(videoframe_t * const frame)
void kvz_videoframe_set_poc(videoframe_t * const frame, const int32_t poc) {
frame->poc = poc;
}
const cu_info_t* kvz_videoframe_get_cu_const(const videoframe_t * const frame,
unsigned int x_in_scu,
unsigned int y_in_scu)
{
return kvz_cu_array_at_const(frame->cu_array, x_in_scu << 3, y_in_scu << 3);
}
cu_info_t* kvz_videoframe_get_cu(videoframe_t * const frame,
const unsigned int x_in_scu,
const unsigned int y_in_scu)
{
return kvz_cu_array_at(frame->cu_array, x_in_scu << 3, y_in_scu << 3);
}

View file

@ -56,7 +56,4 @@ int kvz_videoframe_free(videoframe_t * const frame);
void kvz_videoframe_set_poc(videoframe_t * frame, int32_t poc);
const cu_info_t* kvz_videoframe_get_cu_const(const videoframe_t * const frame, unsigned int x_in_scu, unsigned int y_in_scu);
cu_info_t* kvz_videoframe_get_cu(videoframe_t * const frame, const unsigned int x_in_scu, const unsigned int y_in_scu);
#endif