# HG changeset patch # User michaelni # Date 1032426823 0 # Node ID b3869ffff47a35561d1e24b6ab46090fc5262e94 # Parent 79393a88c6e44b025b21bfca7e7775192d471f84 avcodec_alloc_context() diff -r 79393a88c6e4 -r b3869ffff47a avcodec.h --- a/avcodec.h Wed Sep 18 18:30:31 2002 +0000 +++ b/avcodec.h Thu Sep 19 09:13:43 2002 +0000 @@ -5,8 +5,8 @@ #define LIBAVCODEC_VERSION_INT 0x000406 #define LIBAVCODEC_VERSION "0.4.6" -#define LIBAVCODEC_BUILD 4623 -#define LIBAVCODEC_BUILD_STR "4623" +#define LIBAVCODEC_BUILD 4624 +#define LIBAVCODEC_BUILD_STR "4624" enum CodecID { CODEC_ID_NONE, @@ -100,8 +100,10 @@ #define FF_MAX_B_FRAMES 4 -/* encoding support */ -/* note not everything is supported yet */ +/* encoding support + these flags can be passed in AVCodecContext.flags before initing + Note: note not everything is supported yet +*/ #define CODEC_FLAG_HQ 0x0001 /* high quality (non real time) encoding */ #define CODEC_FLAG_QSCALE 0x0002 /* use fixed qscale */ @@ -514,6 +516,7 @@ AVCodec *avcodec_find_decoder_by_name(const char *name); void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode); +AVCodecContext *avcodec_alloc_context(); int avcodec_open(AVCodecContext *avctx, AVCodec *codec); int avcodec_decode_audio(AVCodecContext *avctx, INT16 *samples, int *frame_size_ptr, diff -r 79393a88c6e4 -r b3869ffff47a utils.c --- a/utils.c Wed Sep 18 18:30:31 2002 +0000 +++ b/utils.c Thu Sep 19 09:13:43 2002 +0000 @@ -49,6 +49,27 @@ format->next = NULL; } +void avcodec_get_context_defaults(AVCodecContext *s){ + s->qmin= 2; + s->qmax= 31; + s->rc_eq= "tex^qComp"; + s->qcompress= 0.5; +} + +/** + * allocates a AVCodecContext and set it to defaults. + * this can be deallocated by simply calling free() + */ +AVCodecContext *avcodec_alloc_context(){ + AVCodecContext *avctx= av_mallocz(sizeof(AVCodecContext)); + + if(avctx==NULL) return NULL; + + avcodec_get_context_defaults(avctx); + + return avctx; +} + int avcodec_open(AVCodecContext *avctx, AVCodec *codec) { int ret;