Browse Source

Reindent.

Originally committed as revision 25921 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Stefano Sabatini 14 years ago
parent
commit
0141163d6a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/imgconvert.c

+ 2
- 2
libavcodec/imgconvert.c View File

@@ -814,8 +814,8 @@ int avpicture_alloc(AVPicture *picture,
enum PixelFormat pix_fmt, int width, int height)
{
if (av_image_alloc(picture->data, picture->linesize, width, height, pix_fmt, 0) < 0) {
memset(picture, 0, sizeof(AVPicture));
return -1;
memset(picture, 0, sizeof(AVPicture));
return -1;
}

return 0;


Loading…
Cancel
Save