diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-21 20:29:49 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-21 20:29:49 +0000 |
commit | 0a036d073e846e5a4881464ea3dff1c8d2793f90 (patch) | |
tree | d4b39ba5912c6c826a832a4c35748e91a873269d /vhook | |
parent | 346db3ef7f82ea0ca8365e4a700c0113b2f3a86f (diff) | |
download | ffmpeg-streaming-0a036d073e846e5a4881464ea3dff1c8d2793f90.zip ffmpeg-streaming-0a036d073e846e5a4881464ea3dff1c8d2793f90.tar.gz |
Revert adding av_uninit to out_width/out_height variables.
The warning is not a false positive.
Originally committed as revision 17493 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook')
-rw-r--r-- | vhook/ppm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vhook/ppm.c b/vhook/ppm.c index 94c034a..0e37ac4 100644 --- a/vhook/ppm.c +++ b/vhook/ppm.c @@ -232,8 +232,8 @@ void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width, AVPicture picture1; AVPicture picture2; AVPicture *pict = picture; - int av_uninit(out_width); - int av_uninit(out_height); + int out_width; + int out_height; int i; uint8_t *ptr = NULL; FILE *in = rwpipe_reader( ci->rw ); |