mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 05:45:58 +00:00
codecmap. The VC1 decoder can also handle the Advanced Profile.
Fixes #565269
This commit is contained in:
parent
30805cd2c4
commit
8dcbe4f7e8
1 changed files with 2 additions and 1 deletions
|
@ -2632,7 +2632,8 @@ gst_ffmpeg_caps_to_codecid (const GstCaps * caps, AVCodecContext * context)
|
|||
guint32 fourcc;
|
||||
|
||||
if (gst_structure_get_fourcc (structure, "fourcc", &fourcc)) {
|
||||
if (fourcc == GST_MAKE_FOURCC ('W', 'V', 'C', '1'))
|
||||
if ((fourcc == GST_MAKE_FOURCC ('W', 'V', 'C', '1')) ||
|
||||
(fourcc == GST_MAKE_FOURCC ('W', 'M', 'V', 'A')))
|
||||
id = CODEC_ID_VC1;
|
||||
} else
|
||||
id = CODEC_ID_WMV3;
|
||||
|
|
Loading…
Reference in a new issue