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
e510171f
Commit
e510171f
authored
Oct 28, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: fix old codec ids
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
f0b26bf0
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
libshine.c
libavcodec/libshine.c
+1
-1
libzvbi-teletextdec.c
libavcodec/libzvbi-teletextdec.c
+1
-1
s302menc.c
libavcodec/s302menc.c
+1
-1
No files found.
libavcodec/libshine.c
View file @
e510171f
...
...
@@ -134,7 +134,7 @@ AVCodec ff_libshine_encoder = {
.
name
=
"libshine"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"libshine MP3 (MPEG audio layer 3)"
),
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
id
=
CODEC_ID_MP3
,
.
id
=
AV_
CODEC_ID_MP3
,
.
priv_data_size
=
sizeof
(
SHINEContext
),
.
init
=
libshine_encode_init
,
.
encode2
=
libshine_encode_frame
,
...
...
libavcodec/libzvbi-teletextdec.c
View file @
e510171f
...
...
@@ -459,7 +459,7 @@ AVCodec ff_libzvbi_teletext_decoder = {
.
name
=
"libzvbi_teletextdec"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Libzvbi DVB teletext decoder"
),
.
type
=
AVMEDIA_TYPE_SUBTITLE
,
.
id
=
CODEC_ID_DVB_TELETEXT
,
.
id
=
AV_
CODEC_ID_DVB_TELETEXT
,
.
priv_data_size
=
sizeof
(
TeletextContext
),
.
init
=
teletext_init_decoder
,
.
close
=
teletext_close_decoder
,
...
...
libavcodec/s302menc.c
View file @
e510171f
...
...
@@ -165,7 +165,7 @@ AVCodec ff_s302m_encoder = {
.
name
=
"s302m"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"SMPTE 302M"
),
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
id
=
CODEC_ID_S302M
,
.
id
=
AV_
CODEC_ID_S302M
,
.
priv_data_size
=
sizeof
(
S302MEncContext
),
.
init
=
s302m_encode_init
,
.
encode2
=
s302m_encode2_frame
,
...
...
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