2016-02-26 23:04:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Glyptodon, Inc.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GUACENC_ENCODE_H
|
|
|
|
#define GUACENC_ENCODE_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Encodes the given Guacamole protocol dump as video.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The path to the file containing the raw Guacamole protocol dump.
|
|
|
|
*
|
2016-03-11 22:01:16 +00:00
|
|
|
* @param out_path
|
|
|
|
* The full path to the file in which encoded video should be written.
|
|
|
|
*
|
|
|
|
* @param codec
|
|
|
|
* The name of the codec to use for the video encoding, as defined by
|
|
|
|
* ffmpeg / libavcodec.
|
|
|
|
*
|
|
|
|
* @param width
|
|
|
|
* The width of the desired video, in pixels.
|
|
|
|
*
|
|
|
|
* @param height
|
|
|
|
* The height of the desired video, in pixels.
|
|
|
|
*
|
|
|
|
* @param bitrate
|
|
|
|
* The desired overall bitrate of the resulting encoded video, in bits per
|
|
|
|
* second.
|
|
|
|
*
|
2016-02-26 23:04:30 +00:00
|
|
|
* @return
|
|
|
|
* Zero on success, non-zero if an error prevented successful encoding of
|
|
|
|
* the video.
|
|
|
|
*/
|
2016-03-11 22:01:16 +00:00
|
|
|
int guacenc_encode(const char* path, const char* out_path, const char* codec,
|
|
|
|
int width, int height, int bitrate);
|
2016-02-26 23:04:30 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|