diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-01-04 13:27:35 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-01-04 13:27:35 +0000 |
commit | 55cf1959521b0d8db6b9153265c6a48436f5f221 (patch) | |
tree | 69346ae66c231f1568785f7d2648fba99f4ca736 /ffmpeg.c | |
parent | 1b2dcdc1e06a0053329986adc26fcbc19548d7be (diff) | |
download | ffmpeg-55cf1959521b0d8db6b9153265c6a48436f5f221.tar.gz |
.{Y,U,V} image2 support
Originally committed as revision 3802 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -83,8 +83,8 @@ static int nb_meta_data_maps; static AVInputFormat *file_iformat; static AVOutputFormat *file_oformat; static AVImageFormat *image_format; -static int frame_width = 160; -static int frame_height = 128; +static int frame_width = 0; +static int frame_height = 0; static float frame_aspect_ratio = 0; static enum PixelFormat frame_pix_fmt = PIX_FMT_YUV420P; static int frame_padtop = 0; |