Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gst-plugins-base
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Seungha Yang
gst-plugins-base
Commits
d2c68e60
Commit
d2c68e60
authored
Dec 21, 2012
by
Pete Beardmore
Committed by
Wim Taymans
Dec 21, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riff: add waveformatextension ac3 support
fixes #690591
parent
fe934571
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
gst-libs/gst/riff/riff-media.c
gst-libs/gst/riff/riff-media.c
+6
-0
No files found.
gst-libs/gst/riff/riff-media.c
View file @
d2c68e60
...
...
@@ -1655,6 +1655,12 @@ gst_riff_create_audio_caps (guint16 codec_id,
*
codec_name
=
g_strdup
(
"Mu-law audio"
);
}
else
if
(
subformat_guid
[
0
]
==
0x00000092
)
{
GST_DEBUG
(
"FIXME: handle DOLBY AC3 SPDIF format"
);
}
else
if
(
subformat_guid
[
0
]
==
0x00002000
)
{
GST_DEBUG
(
"WAVE_FORMAT_EXTENSIBLE AC-3 audio"
);
channels_max
=
6
;
caps
=
gst_caps_new_empty_simple
(
"audio/x-ac3"
);
if
(
codec_name
)
*
codec_name
=
g_strdup
(
"AC-3 audio"
);
}
}
else
if
(
subformat_guid
[
0
]
==
0x6ba47966
&&
subformat_guid
[
1
]
==
0x41783f83
&&
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment