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.

87 lines
2.2KB

  1. /*
  2. * Intel MediaSDK QSV utility functions
  3. *
  4. * copyright (c) 2013 Luca Barbato
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVCODEC_QSV_INTERNAL_H
  23. #define AVCODEC_QSV_INTERNAL_H
  24. #include <stdint.h>
  25. #include <sys/types.h>
  26. #include <mfx/mfxvideo.h>
  27. #include "libavutil/frame.h"
  28. #include "libavutil/pixfmt.h"
  29. #include "avcodec.h"
  30. #define QSV_VERSION_MAJOR 1
  31. #define QSV_VERSION_MINOR 1
  32. #define ASYNC_DEPTH_DEFAULT 4 // internal parallelism
  33. typedef struct QSVFrame {
  34. AVFrame *frame;
  35. mfxFrameSurface1 *surface;
  36. mfxFrameSurface1 surface_internal;
  37. struct QSVFrame *next;
  38. } QSVFrame;
  39. typedef struct QSVContext {
  40. // the session used for decoding
  41. mfxSession session;
  42. // the session we allocated internally, in case the caller did not provide
  43. // one
  44. mfxSession internal_session;
  45. /**
  46. * a linked list of frames currently being used by QSV
  47. */
  48. QSVFrame *work_frames;
  49. // options set by the caller
  50. int async_depth;
  51. int iopattern;
  52. mfxExtBuffer **ext_buffers;
  53. int nb_ext_buffers;
  54. } QSVContext;
  55. /**
  56. * Convert a libmfx error code into a libav error code.
  57. */
  58. int ff_qsv_error(int mfx_err);
  59. int ff_qsv_map_pixfmt(enum AVPixelFormat format);
  60. int ff_qsv_init(AVCodecContext *s, QSVContext *q, mfxSession session);
  61. int ff_qsv_decode(AVCodecContext *s, QSVContext *q,
  62. AVFrame *frame, int *got_frame,
  63. AVPacket *avpkt);
  64. int ff_qsv_close(QSVContext *q);
  65. #endif /* AVCODEC_QSV_INTERNAL_H */