#include "avcodec.h"#include "bytestream.h"Go to the source code of this file.
| Functions | |
| static av_cold int | decode_init (AVCodecContext *avctx) | 
| static int | decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) | 
| static av_cold int | decode_close (AVCodecContext *avctx) | 
| Variables | |
| AVCodec | ff_frwu_decoder | 
| static av_cold int decode_close | ( | AVCodecContext * | avctx | ) |  [static] | 
| static int decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| AVPacket * | avpkt | |||
| ) |  [static] | 
| static av_cold int decode_init | ( | AVCodecContext * | avctx | ) |  [static] | 
Initial value:
 {
    .name           = "frwu",
    .type           = AVMEDIA_TYPE_VIDEO,
    .id             = AV_CODEC_ID_FRWU,
    .init           = decode_init,
    .close          = decode_close,
    .decode         = decode_frame,
    .capabilities   = CODEC_CAP_DR1,
    .long_name      = NULL_IF_CONFIG_SMALL("Forward Uncompressed"),
}
 1.5.8
 1.5.8