Browse Source

Remove "frame size must be a multiple of 2" check.

This check only caught explicitly set sizes from the cmd line and overriding
the users wish seems silly, especially as it seems to work.

Originally committed as revision 20634 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Michael Niedermayer 16 years ago
parent
commit
bc7eb330e3
1 changed files with 0 additions and 4 deletions
  1. +0
    -4
      ffmpeg.c

+ 0
- 4
ffmpeg.c View File

@@ -2486,10 +2486,6 @@ static void opt_frame_size(const char *arg)
fprintf(stderr, "Incorrect frame size\n");
av_exit(1);
}
if ((frame_width % 2) != 0 || (frame_height % 2) != 0) {
fprintf(stderr, "Frame size must be a multiple of 2\n");
av_exit(1);
}
}

static void opt_pad_color(const char *arg) {


Loading…
Cancel
Save