1234567891011121314151617181920212223242526272829303132 |
- #ifndef AVCODEC_BSWAPDSP_H
- #define AVCODEC_BSWAPDSP_H
- #include <stdint.h>
- typedef struct BswapDSPContext {
- void (*bswap_buf)(uint32_t *dst, const uint32_t *src, int w);
- void (*bswap16_buf)(uint16_t *dst, const uint16_t *src, int len);
- } BswapDSPContext;
- void ff_bswapdsp_init(BswapDSPContext *c);
- void ff_bswapdsp_init_x86(BswapDSPContext *c);
- #endif
|