#include "mpegvideo.h"#include "h263.h"#include "flv.h"#include "libavutil/imgutils.h"Go to the source code of this file.
Functions | |
| void | ff_flv2_decode_ac_esc (GetBitContext *gb, int *level, int *run, int *last) |
| int | ff_flv_decode_picture_header (MpegEncContext *s) |
Variables | |
| AVCodec | ff_flv_decoder |
| void ff_flv2_decode_ac_esc | ( | GetBitContext * | gb, | |
| int * | level, | |||
| int * | run, | |||
| int * | last | |||
| ) |
| int ff_flv_decode_picture_header | ( | MpegEncContext * | s | ) |
Initial value:
{
.name = "flv",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_FLV1,
.priv_data_size = sizeof(MpegEncContext),
.init = ff_h263_decode_init,
.close = ff_h263_decode_end,
.decode = ff_h263_decode_frame,
.capabilities = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
.max_lowres= 3,
.long_name= NULL_IF_CONFIG_SMALL("Flash Video (FLV) / Sorenson Spark / Sorenson H.263"),
.pix_fmts= ff_pixfmt_list_420,
}
1.5.8