changeset 71:79be2c581c01 libavcodec

changed opendivx to mpeg4
author glantau
date Wed, 15 Aug 2001 13:12:23 +0000
parents c7767df463f4
children 3049d6d452a3
files apiexample.c mpegvideo.c mpegvideo.h utils.c
diffstat 4 files changed, 12 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/apiexample.c	Wed Aug 15 13:11:31 2001 +0000
+++ b/apiexample.c	Wed Aug 15 13:12:23 2001 +0000
@@ -292,7 +292,7 @@
     /* put default values */
     memset(c, 0, sizeof(*c));
 
-    /* for some codecs, such as msmpeg4 and opendivx, width and height
+    /* for some codecs, such as msmpeg4 and mpeg4, width and height
        MUST be initialized there because these info are not available
        in the bitstream */
 
@@ -320,9 +320,9 @@
            and this is the only method to use them because you cannot
            know the compressed data size before analysing it. 
 
-           BUT some other codecs (msmpeg4, opendivx) are inherently
-           frame based, so you must call them with all the data for
-           one frame exactly. You must also initialize 'width' and
+           BUT some other codecs (msmpeg4, mpeg4) are inherently frame
+           based, so you must call them with all the data for one
+           frame exactly. You must also initialize 'width' and
            'height' before initializing them. */
 
         /* NOTE2: some codecs allow the raw parameters (frame size,
--- a/mpegvideo.c	Wed Aug 15 13:11:31 2001 +0000
+++ b/mpegvideo.c	Wed Aug 15 13:12:23 2001 +0000
@@ -283,7 +283,7 @@
         s->out_format = FMT_H263;
         s->h263_rv10 = 1;
         break;
-    case CODEC_ID_OPENDIVX:
+    case CODEC_ID_MPEG4:
         s->out_format = FMT_H263;
         s->h263_pred = 1;
         s->unrestricted_mv = 1;
@@ -1341,10 +1341,10 @@
     MPV_encode_end,
 };
 
-AVCodec opendivx_encoder = {
-    "opendivx",
+AVCodec mpeg4_encoder = {
+    "mpeg4",
     CODEC_TYPE_VIDEO,
-    CODEC_ID_OPENDIVX,
+    CODEC_ID_MPEG4,
     sizeof(MpegEncContext),
     MPV_encode_init,
     MPV_encode_picture,
--- a/mpegvideo.h	Wed Aug 15 13:11:31 2001 +0000
+++ b/mpegvideo.h	Wed Aug 15 13:12:23 2001 +0000
@@ -31,6 +31,7 @@
 #define MPEG_BUF_SIZE (16 * 1024)
 
 typedef struct MpegEncContext {
+    struct AVCodecContext *avctx;
     /* the following parameters must be initialized before encoding */
     int width, height; /* picture size. must be a multiple of 16 */
     int gop_size;
@@ -40,7 +41,7 @@
     enum OutputFormat out_format; /* output format */
     int h263_plus; /* h263 plus headers */
     int h263_rv10; /* use RV10 variation for H263 */
-    int h263_pred; /* use OpenDIVX (aka mpeg4) ac/dc predictions */
+    int h263_pred; /* use mpeg4/h263 ac/dc predictions */
     int h263_msmpeg4; /* generate MSMPEG4 compatible stream */
     int h263_intel; /* use I263 intel h263 header */
     int fixed_qscale; /* fixed qscale if non zero */
--- a/utils.c	Wed Aug 15 13:11:31 2001 +0000
+++ b/utils.c	Wed Aug 15 13:12:23 2001 +0000
@@ -350,7 +350,7 @@
     register_avcodec(&h263p_encoder);
     register_avcodec(&rv10_encoder);
     register_avcodec(&mjpeg_encoder);
-    register_avcodec(&opendivx_encoder);
+    register_avcodec(&mpeg4_encoder);
     register_avcodec(&msmpeg4_encoder);
 #endif /* CONFIG_ENCODERS */
     register_avcodec(&pcm_codec);
@@ -359,7 +359,7 @@
     /* decoders */
 #ifdef CONFIG_DECODERS
     register_avcodec(&h263_decoder);
-    register_avcodec(&opendivx_decoder);
+    register_avcodec(&mpeg4_decoder);
     register_avcodec(&msmpeg4_decoder);
     register_avcodec(&mpeg_decoder);
     register_avcodec(&h263i_decoder);