diff options
author | Oleksij Rempel <linux@rempel-privat.de> | 2011-02-09 12:48:00 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2018-01-25 19:42:07 +0000 |
commit | 1bb4b83e9a5d9b9d5f443abb7bf79a19db47e244 (patch) | |
tree | c2a6fbcbe3b42a61156198122f6ad8bc18f4b14a /ext | |
parent | 342d8403f328a331933be238f0d5f54b919f0310 (diff) |
vpx: add VP8_DEBUG_TXT_* flags for postprocessing
https://bugzilla.gnome.org/show_bug.cgi?id=641399
Diffstat (limited to 'ext')
-rw-r--r-- | ext/vpx/gstvpxdec.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/vpx/gstvpxdec.c b/ext/vpx/gstvpxdec.c index 92c637746..c3f0f625f 100644 --- a/ext/vpx/gstvpxdec.c +++ b/ext/vpx/gstvpxdec.c @@ -62,6 +62,18 @@ gst_vpx_dec_post_processing_flags_get_type (void) {C_FLAGS (VP8_DEBLOCK), "Deblock", "deblock"}, {C_FLAGS (VP8_DEMACROBLOCK), "Demacroblock", "demacroblock"}, {C_FLAGS (VP8_ADDNOISE), "Add noise", "addnoise"}, + {C_FLAGS (VP8_DEBUG_TXT_FRAME_INFO), + "Print frame information", + "visualize-frame-info"}, + {C_FLAGS (VP8_DEBUG_TXT_MBLK_MODES), + "Show macroblock mode selection overlaid on image", + "visualize-macroblock-modes"}, + {C_FLAGS (VP8_DEBUG_TXT_DC_DIFF), + "Show dc diff for each macro block overlaid on image", + "visualize-dc-diff"}, + {C_FLAGS (VP8_DEBUG_TXT_RATE_INFO), + "Print video rate info", + "visualize-rate-info"}, {C_FLAGS (VP8_MFQE), "Multi-frame quality enhancement", "mfqe"}, {0, NULL, NULL} }; |