diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-11-14 11:19:25 +0100 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-11-14 11:20:15 +0100 |
commit | a0bc6b51d4f6d01eb4bcaec5489ca67037687a77 (patch) | |
tree | 5618d262eea09d2ebcc227ed80a8587906ae7e92 /libavformat/mp3enc.c | |
parent | cd70ffaac8b74d88ed1460e10c7e9c02d067e3ca (diff) | |
parent | e72d6fa08a3c1876109149401753a8d2c736d418 (diff) | |
download | ffmpeg-a0bc6b51d4f6d01eb4bcaec5489ca67037687a77.tar.gz |
Merge commit 'e72d6fa08a3c1876109149401753a8d2c736d418'
* commit 'e72d6fa08a3c1876109149401753a8d2c736d418':
build: Move MP2 muxer declaration away from MP3 muxer code
Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavformat/mp3enc.c')
-rw-r--r-- | libavformat/mp3enc.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libavformat/mp3enc.c b/libavformat/mp3enc.c index 4c97fa113b..49f3742dc4 100644 --- a/libavformat/mp3enc.c +++ b/libavformat/mp3enc.c @@ -490,21 +490,6 @@ static int query_codec(enum AVCodecID id, int std_compliance) return -1; } -#if CONFIG_MP2_MUXER -AVOutputFormat ff_mp2_muxer = { - .name = "mp2", - .long_name = NULL_IF_CONFIG_SMALL("MP2 (MPEG audio layer 2)"), - .mime_type = "audio/mpeg", - .extensions = "mp2,m2a,mpa", - .audio_codec = AV_CODEC_ID_MP2, - .video_codec = AV_CODEC_ID_NONE, - .write_packet = ff_raw_write_packet, - .flags = AVFMT_NOTIMESTAMPS, -}; -#endif - -#if CONFIG_MP3_MUXER - static const AVOption options[] = { { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.", offsetof(MP3Context, id3v2_version), AV_OPT_TYPE_INT, {.i64 = 4}, 0, 4, AV_OPT_FLAG_ENCODING_PARAM}, @@ -652,4 +637,3 @@ AVOutputFormat ff_mp3_muxer = { .flags = AVFMT_NOTIMESTAMPS, .priv_class = &mp3_muxer_class, }; -#endif |