error_concealment.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright (c) 2011 The WebM project authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by a BSD-style license
  5. * that can be found in the LICENSE file in the root of the source
  6. * tree. An additional intellectual property rights grant can be found
  7. * in the file PATENTS. All contributing project authors may
  8. * be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef VPX_VP8_DECODER_ERROR_CONCEALMENT_H_
  11. #define VPX_VP8_DECODER_ERROR_CONCEALMENT_H_
  12. #include "onyxd_int.h"
  13. #include "ec_types.h"
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /* Allocate memory for the overlap lists */
  18. int vp8_alloc_overlap_lists(VP8D_COMP *pbi);
  19. /* Deallocate the overlap lists */
  20. void vp8_de_alloc_overlap_lists(VP8D_COMP *pbi);
  21. /* Estimate all missing motion vectors. */
  22. void vp8_estimate_missing_mvs(VP8D_COMP *pbi);
  23. /* Functions for spatial MV interpolation */
  24. /* Interpolates all motion vectors for a macroblock mb at position
  25. * (mb_row, mb_col). */
  26. void vp8_interpolate_motion(MACROBLOCKD *mb, int mb_row, int mb_col,
  27. int mb_rows, int mb_cols);
  28. #ifdef __cplusplus
  29. } // extern "C"
  30. #endif
  31. #endif // VPX_VP8_DECODER_ERROR_CONCEALMENT_H_