123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #ifndef AVUTIL_HWCONTEXT_VIDEOTOOLBOX_H
- #define AVUTIL_HWCONTEXT_VIDEOTOOLBOX_H
- #include <stdint.h>
- #include <VideoToolbox/VideoToolbox.h>
- #include "pixfmt.h"
- enum AVPixelFormat av_map_videotoolbox_format_to_pixfmt(uint32_t cv_fmt);
- uint32_t av_map_videotoolbox_format_from_pixfmt(enum AVPixelFormat pix_fmt);
- uint32_t av_map_videotoolbox_format_from_pixfmt2(enum AVPixelFormat pix_fmt, bool full_range);
- #endif
|