summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/ffmpeg/libavcodec/png.c
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/ffmpeg/libavcodec/png.c')
-rw-r--r--chromium/third_party/ffmpeg/libavcodec/png.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/third_party/ffmpeg/libavcodec/png.c b/chromium/third_party/ffmpeg/libavcodec/png.c
index b398d910003..ef52b51bd43 100644
--- a/chromium/third_party/ffmpeg/libavcodec/png.c
+++ b/chromium/third_party/ffmpeg/libavcodec/png.c
@@ -66,7 +66,7 @@ int ff_png_pass_row_size(int pass, int bits_per_pixel, int width)
xmin = ff_png_pass_xmin[pass];
if (width <= xmin)
return 0;
- shift = ff_png_pass_xshift[pass];
+ shift = ff_png_pass_xshift[pass];
pass_width = (width - xmin + (1 << shift) - 1) >> shift;
return (pass_width * bits_per_pixel + 7) >> 3;
}