Browse Source

mpeg4videodec: fix integer avoption types

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 13 years ago
parent
commit
c6c560deed
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/mpeg4videodec.c

+ 2
- 2
libavcodec/mpeg4videodec.c View File

@@ -2319,8 +2319,8 @@ static const AVProfile mpeg4_video_profiles[] = {
};

static const AVOption mpeg4_options[] = {
{"quarter_sample", "1/4 subpel MC", offsetof(MpegEncContext, quarter_sample), FF_OPT_TYPE_INT, {.dbl = 0}, 0, 1, 0},
{"divx_packed", "divx style packed b frames", offsetof(MpegEncContext, divx_packed), FF_OPT_TYPE_INT, {.dbl = 0}, 0, 1, 0},
{"quarter_sample", "1/4 subpel MC", offsetof(MpegEncContext, quarter_sample), FF_OPT_TYPE_INT, {.i64 = 0}, 0, 1, 0},
{"divx_packed", "divx style packed b frames", offsetof(MpegEncContext, divx_packed), FF_OPT_TYPE_INT, {.i64 = 0}, 0, 1, 0},
{NULL}
};



Loading…
Cancel
Save