#include "avcodec.h"#include "internal.h"Go to the source code of this file.
Functions | |
| static av_cold int | y41p_encode_init (AVCodecContext *avctx) |
| static int | y41p_encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic, int *got_packet) |
| static av_cold int | y41p_encode_close (AVCodecContext *avctx) |
Variables | |
| AVCodec | ff_y41p_encoder |
| static av_cold int y41p_encode_close | ( | AVCodecContext * | avctx | ) | [static] |
| static int y41p_encode_frame | ( | AVCodecContext * | avctx, | |
| AVPacket * | pkt, | |||
| const AVFrame * | pic, | |||
| int * | got_packet | |||
| ) | [static] |
| static av_cold int y41p_encode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{
.name = "y41p",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_Y41P,
.init = y41p_encode_init,
.encode2 = y41p_encode_frame,
.close = y41p_encode_close,
.pix_fmts = (const enum PixelFormat[]) { PIX_FMT_YUV411P,
PIX_FMT_NONE },
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed YUV 4:1:1 12-bit"),
}
1.5.8