LiVES  3.0.2
transcode.h
Go to the documentation of this file.
1 // transcode.c
3 // LiVES
4 // (c) G. Finch 2008 - 2019 <salsaman_lives@gmail.com>
5 // released under the GNU GPL 3 or later
6 // see file ../COPYING or www.gnu.org for licensing details
7 
8 // fast transcoding via a plugin
9 
10 #ifdef LIBAV_TRANSCODE
11 
12 #ifndef HAS_LIVES_TRANSCODE_H
13 #define HAS_LIVES_TRANSCODE_H
14 
15 #define TRANSCODE_PLUGIN_NAME "libav_stream"
16 #define DEF_TRANSCODE_FILENAME "lives-video"
17 
18 #define TRANSCODE_PARAM_FILENAME "fname"
19 
20 boolean transcode(int start, int end);
21 
22 #endif // HAS_LIVES_TRANSCODE_H
23 
24 #endif