From 49a85930c557e9eab9c8d4e12530ece3ca829960 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 16 Apr 2010 19:45:16 +0200 Subject: [PATCH] resindvdbin: Use GST_FLOW_CUSTOM_SUCCESS instead of some integer Fixes compiler warnings with gcc 4.5. This is the same as commit 5a51dbd. --- ext/resindvd/gstmpegdefs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/resindvd/gstmpegdefs.h b/ext/resindvd/gstmpegdefs.h index 33a8249c6b..608769ae0d 100644 --- a/ext/resindvd/gstmpegdefs.h +++ b/ext/resindvd/gstmpegdefs.h @@ -169,7 +169,7 @@ #define MPEG_MUX_RATE_MULT 50 /* some extra GstFlowReturn values used internally */ -#define GST_FLOW_NEED_MORE_DATA -100 -#define GST_FLOW_LOST_SYNC -101 +#define GST_FLOW_NEED_MORE_DATA GST_FLOW_CUSTOM_SUCCESS +#define GST_FLOW_LOST_SYNC GST_FLOW_CUSTOM_SUCCESS_1 #endif /* __GST_MPEG_DEFS_H__ */