pipewire/spa/plugins/ffmpeg/ffmpeg.h
Barnabás Pőcze 6cb8fb899d spa: ffmpeg: move some function declarations to a header
Move the declarations for `spa_ffmpeg_{dec,enc}_init` to the
"ffmpeg.h" header file. This way the implementation is checked
against the signature.
2022-06-16 17:27:36 +02:00

16 lines
427 B
C

#ifndef SPA_FFMPEG_H
#define SPA_FFMPEG_H
#include <stdint.h>
#include <stddef.h>
struct spa_dict;
struct spa_handle;
struct spa_support;
int spa_ffmpeg_dec_init(struct spa_handle *handle, const struct spa_dict *info,
const struct spa_support *support, uint32_t n_support);
int spa_ffmpeg_enc_init(struct spa_handle *handle, const struct spa_dict *info,
const struct spa_support *support, uint32_t n_support);
#endif