diff options
| author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-08-02 17:54:04 +0000 |
|---|---|---|
| committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-08-02 17:54:04 +0000 |
| commit | cbc3df738bf6802cbaea33fbbca9ac7434671953 (patch) | |
| tree | 92f66ff245efeeab563596673ee266abd993b083 | |
| parent | 266c0bf8bf1a98cdf06d30eb35db81970fe8e98e (diff) | |
gst/matroska/matroska-mux.c: Add more raw YUV formats to the list of supported formats.
Original commit message from CVS:
* gst/matroska/matroska-mux.c:
Add more raw YUV formats to the list of supported formats.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | gst/matroska/matroska-mux.c | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,6 +1,11 @@ 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk> * gst/matroska/matroska-mux.c: + Add more raw YUV formats to the list of supported formats. + +2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk> + + * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_setcaps): Add support for muxing raw float audio now that the spec defines the endianness and add support for muxing raw integer audio with 24 and diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c index 7d30294f..8d334a98 100644 --- a/gst/matroska/matroska-mux.c +++ b/gst/matroska/matroska-mux.c @@ -92,7 +92,8 @@ static GstStaticPadTemplate videosink_templ = "video/x-dirac, " COMMON_VIDEO_CAPS "; " "video/x-raw-yuv, " - "format = (fourcc) { YUY2, I420 }, " COMMON_VIDEO_CAPS) + "format = (fourcc) { YUY2, I420, YV12, UYVY, AYUV }, " + COMMON_VIDEO_CAPS) ); #define COMMON_AUDIO_CAPS \ |
