Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
eca2eb2d
Commit
eca2eb2d
authored
Nov 14, 2012
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pcm: give more descriptive name to codec
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
c0d68be5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
codec_desc.c
libavcodec/codec_desc.c
+1
-1
pcm.c
libavcodec/pcm.c
+1
-1
No files found.
libavcodec/codec_desc.c
View file @
eca2eb2d
...
...
@@ -1451,7 +1451,7 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
id
=
AV_CODEC_ID_PCM_S16LE_PLANAR
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
name
=
"pcm_s16le_planar"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"PCM 16-bit little-endian planar"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"PCM
signed
16-bit little-endian planar"
),
.
props
=
AV_CODEC_PROP_LOSSLESS
,
},
{
...
...
libavcodec/pcm.c
View file @
eca2eb2d
...
...
@@ -540,7 +540,7 @@ PCM_CODEC (PCM_MULAW, AV_SAMPLE_FMT_S16, pcm_mulaw, "PCM mu-law /
PCM_CODEC
(
PCM_S8
,
AV_SAMPLE_FMT_U8
,
pcm_s8
,
"PCM signed 8-bit"
);
PCM_CODEC
(
PCM_S16BE
,
AV_SAMPLE_FMT_S16
,
pcm_s16be
,
"PCM signed 16-bit big-endian"
);
PCM_CODEC
(
PCM_S16LE
,
AV_SAMPLE_FMT_S16
,
pcm_s16le
,
"PCM signed 16-bit little-endian"
);
PCM_DECODER
(
PCM_S16LE_PLANAR
,
AV_SAMPLE_FMT_S16P
,
pcm_s16le_planar
,
"PCM 16-bit little-endian planar"
);
PCM_DECODER
(
PCM_S16LE_PLANAR
,
AV_SAMPLE_FMT_S16P
,
pcm_s16le_planar
,
"PCM
signed
16-bit little-endian planar"
);
PCM_CODEC
(
PCM_S24BE
,
AV_SAMPLE_FMT_S32
,
pcm_s24be
,
"PCM signed 24-bit big-endian"
);
PCM_CODEC
(
PCM_S24DAUD
,
AV_SAMPLE_FMT_S16
,
pcm_s24daud
,
"PCM D-Cinema audio signed 24-bit"
);
PCM_CODEC
(
PCM_S24LE
,
AV_SAMPLE_FMT_S32
,
pcm_s24le
,
"PCM signed 24-bit little-endian"
);
...
...
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