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
This commit is contained in:
Vineeth T M 2014-10-06 11:44:12 +01:00 committed by Luis de Bethencourt
parent 4d8d9b009b
commit 52ac7cf27a
2 changed files with 4 additions and 4 deletions

View file

@ -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,

View file

@ -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;