#include "avcodec.h"#include "get_bits.h"Go to the source code of this file.
| Functions | |
| static av_cold int | v410_decode_init (AVCodecContext *avctx) | 
| static int | v410_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) | 
| static av_cold int | v410_decode_close (AVCodecContext *avctx) | 
| Variables | |
| AVCodec | ff_v410_decoder | 
| static av_cold int v410_decode_close | ( | AVCodecContext * | avctx | ) |  [static] | 
| static int v410_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| AVPacket * | avpkt | |||
| ) |  [static] | 
| static av_cold int v410_decode_init | ( | AVCodecContext * | avctx | ) |  [static] | 
Initial value:
 {
    .name         = "v410",
    .type         = AVMEDIA_TYPE_VIDEO,
    .id           = CODEC_ID_V410,
    .init         = v410_decode_init,
    .decode       = v410_decode_frame,
    .close        = v410_decode_close,
    .capabilities = CODEC_CAP_DR1,
    .long_name    = NULL_IF_CONFIG_SMALL("Uncompressed 4:4:4 10-bit"),
}
 1.5.8
 1.5.8