#include "avcodec.h"
#include "cga_data.h"
Go to the source code of this file.
| Data Structures | |
| struct | TMVContext | 
| Functions | |
| static av_cold int | tmv_decode_init (AVCodecContext *avctx) | 
| static int | tmv_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) | 
| static av_cold int | tmv_decode_close (AVCodecContext *avctx) | 
| Variables | |
| AVCodec | ff_tmv_decoder | 
Definition in file tmv.c.
| static av_cold int tmv_decode_close | ( | AVCodecContext * | avctx | ) |  [static] | 
| static int tmv_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| AVPacket * | avpkt | |||
| ) |  [static] | 
| static av_cold int tmv_decode_init | ( | AVCodecContext * | avctx | ) |  [static] | 
Initial value:
 {
    .name           = "tmv",
    .type           = AVMEDIA_TYPE_VIDEO,
    .id             = CODEC_ID_TMV,
    .priv_data_size = sizeof(TMVContext),
    .init           = tmv_decode_init,
    .close          = tmv_decode_close,
    .decode         = tmv_decode_frame,
    .capabilities   = CODEC_CAP_DR1,
    .long_name      = NULL_IF_CONFIG_SMALL("8088flex TMV"),
}
 1.5.8
 1.5.8