You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
2.3KB

  1. /*
  2. * H.26L/H.264/AVC/JVT/14496-10/... encoder/decoder
  3. * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file h264pred.h
  23. * H.264 / AVC / MPEG4 prediction functions.
  24. * @author Michael Niedermayer <michaelni@gmx.at>
  25. */
  26. #ifndef FFMPEG_H264PRED_H
  27. #define FFMPEG_H264PRED_H
  28. #include "common.h"
  29. /**
  30. * Prediction types
  31. */
  32. //@{
  33. #define VERT_PRED 0
  34. #define HOR_PRED 1
  35. #define DC_PRED 2
  36. #define DIAG_DOWN_LEFT_PRED 3
  37. #define DIAG_DOWN_RIGHT_PRED 4
  38. #define VERT_RIGHT_PRED 5
  39. #define HOR_DOWN_PRED 6
  40. #define VERT_LEFT_PRED 7
  41. #define HOR_UP_PRED 8
  42. #define LEFT_DC_PRED 9
  43. #define TOP_DC_PRED 10
  44. #define DC_128_PRED 11
  45. #define DIAG_DOWN_LEFT_PRED_RV40_NODOWN 12
  46. #define HOR_UP_PRED_RV40_NODOWN 13
  47. #define VERT_LEFT_PRED_RV40_NODOWN 14
  48. #define DC_PRED8x8 0
  49. #define HOR_PRED8x8 1
  50. #define VERT_PRED8x8 2
  51. #define PLANE_PRED8x8 3
  52. #define LEFT_DC_PRED8x8 4
  53. #define TOP_DC_PRED8x8 5
  54. #define DC_128_PRED8x8 6
  55. //@}
  56. /**
  57. * Context for storing H.264 prediction functions
  58. */
  59. typedef struct H264PredContext{
  60. void (*pred4x4 [9+3+3])(uint8_t *src, uint8_t *topright, int stride);//FIXME move to dsp?
  61. void (*pred8x8l [9+3])(uint8_t *src, int topleft, int topright, int stride);
  62. void (*pred8x8 [4+3])(uint8_t *src, int stride);
  63. void (*pred16x16[4+3])(uint8_t *src, int stride);
  64. }H264PredContext;
  65. void ff_h264_pred_init(H264PredContext *h, int codec_id);
  66. #endif /* FFMPEG_H264PRED_H */