#include "avcodec.h"#include "bytestream.h"#include "internal.h"Go to the source code of this file.
Defines | |
| #define | CLIP(v) av_clip(v, 4, 1019) |
| #define | WRITE_PIXELS(a, b, c) |
Functions | |
| static av_cold int | encode_init (AVCodecContext *avctx) |
| static int | encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet) |
| static av_cold int | encode_close (AVCodecContext *avctx) |
Variables | |
| AVCodec | ff_v210_encoder |
| #define CLIP | ( | v | ) | av_clip(v, 4, 1019) |
| #define WRITE_PIXELS | ( | a, | |||
| b, | |||||
| c | ) |
| static av_cold int encode_close | ( | AVCodecContext * | avctx | ) | [static] |
| static int encode_frame | ( | AVCodecContext * | avctx, | |
| AVPacket * | pkt, | |||
| const AVFrame * | pic, | |||
| int * | got_packet | |||
| ) | [static] |
| static av_cold int encode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{
.name = "v210",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_V210,
.init = encode_init,
.encode2 = encode_frame,
.close = encode_close,
.pix_fmts = (const enum PixelFormat[]){ PIX_FMT_YUV422P10, PIX_FMT_NONE },
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
}
1.5.8