/* * Copyright (c) 2019 The WebM project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree.
*/
typedefstruct MotionField { int ready;
BLOCK_SIZE bsize; int block_rows; int block_cols; int block_num; // block_num == block_rows * block_cols int (*local_structure)[MF_LOCAL_STRUCTURE_SIZE];
int_mv *mf; int *set_mv; int mv_log_scale;
} MotionField;
typedefstruct MotionFieldInfo { int frame_num; int allocated;
MotionField (*motion_field_array)[MAX_INTER_REF_FRAMES][SQUARE_BLOCK_SIZES];
} MotionFieldInfo;
int_mv vp9_motion_field_get_mv(const MotionField *motion_field, int brow, int bcol);
int_mv vp9_motion_field_mi_get_mv(const MotionField *motion_field, int mi_row, int mi_col); int vp9_motion_field_is_mv_set(const MotionField *motion_field, int brow, int bcol);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.