qsvdec.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * Intel MediaSDK QSV utility functions
  3. *
  4. * copyright (c) 2013 Luca Barbato
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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/fifo.h"
  28. #include "libavutil/frame.h"
  29. #include "libavutil/pixfmt.h"
  30. #include "avcodec.h"
  31. #include "hwconfig.h"
  32. #include "qsv_internal.h"
  33. typedef struct QSVContext {
  34. // the session used for decoding
  35. mfxSession session;
  36. // the session we allocated internally, in case the caller did not provide
  37. // one
  38. QSVSession internal_qs;
  39. QSVFramesContext frames_ctx;
  40. /**
  41. * a linked list of frames currently being used by QSV
  42. */
  43. QSVFrame *work_frames;
  44. AVFifoBuffer *async_fifo;
  45. int zero_consume_run;
  46. int buffered_count;
  47. int reinit_flag;
  48. enum AVPixelFormat orig_pix_fmt;
  49. uint32_t fourcc;
  50. mfxFrameInfo frame_info;
  51. AVBufferPool *pool;
  52. int initialized;
  53. // options set by the caller
  54. int async_depth;
  55. int iopattern;
  56. int gpu_copy;
  57. char *load_plugins;
  58. mfxExtBuffer **ext_buffers;
  59. int nb_ext_buffers;
  60. } QSVContext;
  61. extern const AVCodecHWConfigInternal *ff_qsv_hw_configs[];
  62. int ff_qsv_process_data(AVCodecContext *avctx, QSVContext *q,
  63. AVFrame *frame, int *got_frame, AVPacket *pkt);
  64. void ff_qsv_decode_flush(AVCodecContext *avctx, QSVContext *q);
  65. int ff_qsv_decode_close(QSVContext *q);
  66. #endif /* AVCODEC_QSVDEC_H */