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
c0779a67
Commit
c0779a67
authored
Sep 09, 2013
by
Vittorio Giovara
Committed by
Diego Biurrun
Sep 12, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mp3: add .mpa extension
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
e2cd766c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mp3dec.c
libavformat/mp3dec.c
+1
-1
mp3enc.c
libavformat/mp3enc.c
+1
-1
No files found.
libavformat/mp3dec.c
View file @
c0779a67
...
...
@@ -282,5 +282,5 @@ AVInputFormat ff_mp3_demuxer = {
.
read_seek
=
mp3_seek
,
.
priv_data_size
=
sizeof
(
MP3DecContext
),
.
flags
=
AVFMT_GENERIC_INDEX
,
.
extensions
=
"mp2,mp3,m2a"
,
/* XXX: use probe */
.
extensions
=
"mp2,mp3,m2a
,mpa
"
,
/* XXX: use probe */
};
libavformat/mp3enc.c
View file @
c0779a67
...
...
@@ -306,7 +306,7 @@ AVOutputFormat ff_mp2_muxer = {
.
name
=
"mp2"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"MP2 (MPEG audio layer 2)"
),
.
mime_type
=
"audio/x-mpeg"
,
.
extensions
=
"mp2,m2a"
,
.
extensions
=
"mp2,m2a
,mpa
"
,
.
audio_codec
=
AV_CODEC_ID_MP2
,
.
video_codec
=
AV_CODEC_ID_NONE
,
.
write_packet
=
ff_raw_write_packet
,
...
...
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