diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-04-25 18:29:06 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-04-25 18:29:06 +0000 |
commit | 644a92626a94d6f24110309cb2dc7d9ec3e79f25 (patch) | |
tree | 536101865dc2b937f4e4587909c299dc6f434b84 /ffmpeg.c | |
parent | 3ca4b65479f587d5d79080699d16cdd5c9ec7e0a (diff) | |
download | ffmpeg-644a92626a94d6f24110309cb2dc7d9ec3e79f25.tar.gz |
PIX_FMT_NONE and related fixes
Originally committed as revision 4161 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -86,7 +86,7 @@ static AVImageFormat *image_format; 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 enum PixelFormat frame_pix_fmt = PIX_FMT_NONE; static int frame_padtop = 0; static int frame_padbottom = 0; static int frame_padleft = 0; |