12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef AVDEVICE_DECKLINK_ENC_H
- #define AVDEVICE_DECKLINK_ENC_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "libavformat/avformat.h"
- int ff_decklink_write_header(AVFormatContext *avctx);
- int ff_decklink_write_packet(AVFormatContext *avctx, AVPacket *pkt);
- int ff_decklink_write_trailer(AVFormatContext *avctx);
- int ff_decklink_list_output_devices(AVFormatContext *avctx, struct AVDeviceInfoList *device_list);
- #ifdef __cplusplus
- }
- #endif
- #endif
|