diff options
author | Mohamed Naufal <naufal11@gmail.com> | 2011-10-13 15:48:51 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-13 16:50:20 +0200 |
commit | 4d518f123029f6cda1d3875902bbf9566c1fa76f (patch) | |
tree | 3fdca7b86f2acb8d15640e286ed5d00eca66ef43 /libavformat/g723_1.c | |
parent | f884ef00de362a5460a9c58318d009bcae440cc8 (diff) | |
download | ffmpeg-4d518f123029f6cda1d3875902bbf9566c1fa76f.tar.gz |
g723.1: use raw muxer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/g723_1.c')
-rw-r--r-- | libavformat/g723_1.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/libavformat/g723_1.c b/libavformat/g723_1.c index f6c394b18a..19441a1b19 100644 --- a/libavformat/g723_1.c +++ b/libavformat/g723_1.c @@ -81,24 +81,3 @@ AVInputFormat ff_g723_1_demuxer = { .extensions = "tco,rco", .flags = AVFMT_GENERIC_INDEX }; - -#if CONFIG_G723_1_MUXER -static int g723_1_write_packet(AVFormatContext *s, AVPacket *pkt) -{ - put_buffer(s->pb, pkt->data, pkt->size); - put_flush_packet(s->pb); - return 0; -} - -AVOutputFormat ff_g723_1_muxer = { - "g723_1", - NULL_IF_CONFIG_SMALL("G.723.1 format"), - "audio/g723", - "tco", - 0, - CODEC_ID_G723_1, - CODEC_ID_NONE, - NULL, - g723_1_write_packet, -}; -#endif |