blob: 045481b529ff6804cbf5273e32105f90584ea999 (
plain)
1
2
3
4
5
6
|
#include "avcodec.h"
av_cold int decode_end(AVCodecContext *avctx);
av_cold int decode_init(AVCodecContext *avctx);
int decode_packet(AVCodecContext *avctx,
void *data, int *data_size, AVPacket* avpkt);
|