From 52ac7cf27a350c00f16d7387e2ce3c1bf545d916 Mon Sep 17 00:00:00 2001 From: Vineeth T M Date: Mon, 6 Oct 2014 11:44:12 +0100 Subject: [PATCH] videoparser: comment unused GST_BASE_PARSE_FRAME_FLAG_PARSING GST_BASE_PARSE_FRAME_FLAG_PARSING value is wrong, and the same flag is not being used presently. Hence changing the value and commenting it out. This needs to be included in baseparse.h later on https://bugzilla.gnome.org/show_bug.cgi?id=737411 --- gst/videoparsers/gstmpegvideoparse.c | 4 ++-- gst/videoparsers/gstvc1parse.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gst/videoparsers/gstmpegvideoparse.c b/gst/videoparsers/gstmpegvideoparse.c index dadab94e66..9e44ad5461 100644 --- a/gst/videoparsers/gstmpegvideoparse.c +++ b/gst/videoparsers/gstmpegvideoparse.c @@ -575,8 +575,8 @@ gst_mpegv_parse_process_sc (GstMpegvParse * mpvparse, } /* FIXME move into baseparse, or anything equivalent; - * see https://bugzilla.gnome.org/show_bug.cgi?id=650093 */ -#define GST_BASE_PARSE_FRAME_FLAG_PARSING 0x10000 + * see https://bugzilla.gnome.org/show_bug.cgi?id=650093 + * #define GST_BASE_PARSE_FRAME_FLAG_PARSING 0x100000 */ static inline void update_frame_parsing_status (GstMpegvParse * mpvparse, diff --git a/gst/videoparsers/gstvc1parse.h b/gst/videoparsers/gstvc1parse.h index 6d97ec843c..6241e42412 100644 --- a/gst/videoparsers/gstvc1parse.h +++ b/gst/videoparsers/gstvc1parse.h @@ -61,8 +61,8 @@ typedef enum { } GstVC1ParseFormat; /* FIXME move into baseparse, or anything equivalent; - * see https://bugzilla.gnome.org/show_bug.cgi?id=650093 */ -#define GST_BASE_PARSE_FRAME_FLAG_PARSING 0x10000 + * see https://bugzilla.gnome.org/show_bug.cgi?id=650093 + * #define GST_BASE_PARSE_FRAME_FLAG_PARSING 0x100000 */ typedef struct _GstVC1Parse GstVC1Parse; typedef struct _GstVC1ParseClass GstVC1ParseClass;