[FFmpeg-cvslog] hevc: make the crop sizes unsigned

Anton Khirnov git at videolan.org
Sun Mar 29 03:26:04 CEST 2015


ffmpeg | branch: release/2.4 | Anton Khirnov <anton at khirnov.net> | Fri Mar 20 21:28:34 2015 +0100| [a219add4e8e2d3192d99d6c6efe97ec7c429c5ad] | committer: Anton Khirnov

hevc: make the crop sizes unsigned

(cherry picked from commit c929659bdd7d2d5848ea52e685a3164c7b901bb0)
Signed-off-by: Anton Khirnov <anton at khirnov.net>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a219add4e8e2d3192d99d6c6efe97ec7c429c5ad
---

 libavcodec/hevc.h |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h
index 93c5125..aa84cdc 100644
--- a/libavcodec/hevc.h
+++ b/libavcodec/hevc.h
@@ -284,10 +284,10 @@ typedef struct RefPicListTab {
 } RefPicListTab;
 
 typedef struct HEVCWindow {
-    int left_offset;
-    int right_offset;
-    int top_offset;
-    int bottom_offset;
+    unsigned int left_offset;
+    unsigned int right_offset;
+    unsigned int top_offset;
+    unsigned int bottom_offset;
 } HEVCWindow;
 
 typedef struct VUI {



More information about the ffmpeg-cvslog mailing list