aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-08-25 22:54:53 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-08-25 22:54:53 +0000
commite4eadb4b44a5bd446d2f83e92a7baeddb82448ad (patch)
treeca506eb297f2c908f53b75bdadb330c730446933 /libavcodec/avcodec.h
parent029911d1c362939b4664e471bb9b13060a31ebde (diff)
downloadffmpeg-e4eadb4b44a5bd446d2f83e92a7baeddb82448ad.tar.gz
oooooops, having 2 Eterms open and doing cvs diff in one and cvs commit in the other sucks, especially if they are in different directories (MPlayer/main/libavcodec vs. ffmpeg/libavcodec)
Originally committed as revision 2165 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 224fbeeed9..5a158096d2 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -220,7 +220,6 @@ static const int Motion_Est_QTab[] = { ME_ZERO, ME_PHODS, ME_LOG,
#define CODEC_CAP_PARSE_ONLY 0x0004
#define CODEC_CAP_TRUNCATED 0x0008
-
#define FF_COMMON_FRAME \
/**\
* pointer to the picture planes.\
@@ -464,7 +463,7 @@ typedef struct AVCodecContext {
* do something for a generic case as well.
* - decoding: set by lavc.
*/
- enum PixelFormat pix_fmt; //FIXME move to AVFrme
+ enum PixelFormat pix_fmt;
/**
* Frame rate emulation. If not zero lower layer (i.e. format handler)
@@ -712,7 +711,7 @@ typedef struct AVCodecContext {
data is returned. Only MPEG codecs support this now. */
/**
- * 0-> default, 1-> mpeg quant.
+ * 0-> h263 quant 1-> mpeg quant.
* - encoding: set by user.
* - decoding: unused
*/
@@ -1590,7 +1589,7 @@ typedef enum {
int avcodec(void* handle, avc_cmd_t cmd, void* pin, void* pout);
/* memory */
-void *av_malloc(unsigned int size); //FIXME unsigned could be bad, dunno, need thinking
+void *av_malloc(unsigned int size);
void *av_mallocz(unsigned int size);
void *av_realloc(void *ptr, unsigned int size);
void av_free(void *ptr);