From 2656e42bb77a1bae26fe69684af70e33c8a02bc5 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Mon, 30 Apr 2012 19:00:09 +0000 Subject: [PATCH] x264enc: Set default stream-format to avc as it's a better format --- ext/x264/gstx264enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/x264/gstx264enc.c b/ext/x264/gstx264enc.c index d42bbcadb2..48e0fee97a 100644 --- a/ext/x264/gstx264enc.c +++ b/ext/x264/gstx264enc.c @@ -438,7 +438,7 @@ static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src", GST_STATIC_CAPS ("video/x-h264, " "framerate = (fraction) [0/1, MAX], " "width = (int) [ 1, MAX ], " "height = (int) [ 1, MAX ], " - "stream-format = (string) { byte-stream, avc }, " + "stream-format = (string) { avc, byte-stream }, " "alignment = (string) { au }, " "profile = (string) { high-10, high, main, baseline, " "constrained-baseline, high-10-intra }")