Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
f4096bf6
Commit
f4096bf6
authored
Jan 21, 2011
by
Anssi Hannula
Committed by
Mans Rullgard
Jan 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dca: add profile names
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
69915b48
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
dca.c
libavcodec/dca.c
+10
-0
No files found.
libavcodec/dca.c
View file @
f4096bf6
...
@@ -1866,6 +1866,15 @@ static av_cold int dca_decode_end(AVCodecContext * avctx)
...
@@ -1866,6 +1866,15 @@ static av_cold int dca_decode_end(AVCodecContext * avctx)
return
0
;
return
0
;
}
}
static
const
AVProfile
profiles
[]
=
{
{
FF_PROFILE_DTS
,
"DTS"
},
{
FF_PROFILE_DTS_ES
,
"DTS-ES"
},
{
FF_PROFILE_DTS_96_24
,
"DTS 96/24"
},
{
FF_PROFILE_DTS_HD_HRA
,
"DTS-HD HRA"
},
{
FF_PROFILE_DTS_HD_MA
,
"DTS-HD MA"
},
{
FF_PROFILE_UNKNOWN
},
};
AVCodec
dca_decoder
=
{
AVCodec
dca_decoder
=
{
.
name
=
"dca"
,
.
name
=
"dca"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
...
@@ -1876,4 +1885,5 @@ AVCodec dca_decoder = {
...
@@ -1876,4 +1885,5 @@ AVCodec dca_decoder = {
.
close
=
dca_decode_end
,
.
close
=
dca_decode_end
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"DCA (DTS Coherent Acoustics)"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"DCA (DTS Coherent Acoustics)"
),
.
capabilities
=
CODEC_CAP_CHANNEL_CONF
,
.
capabilities
=
CODEC_CAP_CHANNEL_CONF
,
.
profiles
=
NULL_IF_CONFIG_SMALL
(
profiles
),
};
};
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