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.

69 lines
1.8KB

  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_QSVDEC_H
  23. #define AVCODEC_QSVDEC_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. #include "qsv_internal.h"
  31. typedef struct QSVContext {
  32. // the session used for decoding
  33. mfxSession session;
  34. // the session we allocated internally, in case the caller did not provide
  35. // one
  36. mfxSession internal_session;
  37. /**
  38. * a linked list of frames currently being used by QSV
  39. */
  40. QSVFrame *work_frames;
  41. // options set by the caller
  42. int async_depth;
  43. int iopattern;
  44. mfxExtBuffer **ext_buffers;
  45. int nb_ext_buffers;
  46. } QSVContext;
  47. int ff_qsv_map_pixfmt(enum AVPixelFormat format);
  48. int ff_qsv_decode_init(AVCodecContext *s, QSVContext *q, mfxSession session);
  49. int ff_qsv_decode(AVCodecContext *s, QSVContext *q,
  50. AVFrame *frame, int *got_frame,
  51. AVPacket *avpkt);
  52. int ff_qsv_decode_close(QSVContext *q);
  53. #endif /* AVCODEC_QSVDEC_H */