#include "avcodec.h"#include "dsputil.h"#include "mpegvideo.h"#include "msmpeg4.h"#include "msmpeg4data.h"#include "h263.h"#include "wmv2.h"Go to the source code of this file.
Functions | |
| static int | encode_ext_header (Wmv2Context *w) |
| static av_cold int | wmv2_encode_init (AVCodecContext *avctx) |
| int | ff_wmv2_encode_picture_header (MpegEncContext *s, int picture_number) |
| void | ff_wmv2_encode_mb (MpegEncContext *s, DCTELEM block[6][64], int motion_x, int motion_y) |
Variables | |
| AVCodec | ff_wmv2_encoder |
| static int encode_ext_header | ( | Wmv2Context * | w | ) | [static] |
Definition at line 30 of file wmv2enc.c.
Referenced by wmv2_encode_init().
| void ff_wmv2_encode_mb | ( | MpegEncContext * | s, | |
| DCTELEM | block[6][64], | |||
| int | motion_x, | |||
| int | motion_y | |||
| ) |
Definition at line 150 of file wmv2enc.c.
Referenced by encode_mb_internal().
| int ff_wmv2_encode_picture_header | ( | MpegEncContext * | s, | |
| int | picture_number | |||
| ) |
Definition at line 70 of file wmv2enc.c.
Referenced by encode_picture().
| static av_cold int wmv2_encode_init | ( | AVCodecContext * | avctx | ) | [static] |
{
.name = "wmv2",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_WMV2,
.priv_data_size = sizeof(Wmv2Context),
.init = wmv2_encode_init,
.encode = MPV_encode_picture,
.close = MPV_encode_end,
.pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
.long_name= NULL_IF_CONFIG_SMALL("Windows Media Video 8"),
}