mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/amr: Don't reimplement ff_raw_write_packet()
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
c16611ad69
commit
b5985ce44d
@ -87,7 +87,7 @@ OBJS-$(CONFIG_AIFF_MUXER) += aiffenc.o id3v2enc.o
|
||||
OBJS-$(CONFIG_AIX_DEMUXER) += aixdec.o
|
||||
OBJS-$(CONFIG_ALP_DEMUXER) += alp.o
|
||||
OBJS-$(CONFIG_AMR_DEMUXER) += amr.o
|
||||
OBJS-$(CONFIG_AMR_MUXER) += amr.o
|
||||
OBJS-$(CONFIG_AMR_MUXER) += amr.o rawenc.o
|
||||
OBJS-$(CONFIG_AMRNB_DEMUXER) += amr.o
|
||||
OBJS-$(CONFIG_AMRWB_DEMUXER) += amr.o
|
||||
OBJS-$(CONFIG_ANM_DEMUXER) += anm.o
|
||||
|
@ -29,6 +29,7 @@ Only mono files are supported.
|
||||
#include "libavutil/channel_layout.h"
|
||||
#include "avformat.h"
|
||||
#include "internal.h"
|
||||
#include "rawenc.h"
|
||||
|
||||
typedef struct {
|
||||
uint64_t cumulated_size;
|
||||
@ -62,12 +63,6 @@ static int amr_write_header(AVFormatContext *s)
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int amr_write_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
{
|
||||
avio_write(s->pb, pkt->data, pkt->size);
|
||||
return 0;
|
||||
}
|
||||
#endif /* CONFIG_AMR_MUXER */
|
||||
|
||||
static int amr_probe(const AVProbeData *p)
|
||||
@ -296,7 +291,7 @@ AVOutputFormat ff_amr_muxer = {
|
||||
.audio_codec = AV_CODEC_ID_AMR_NB,
|
||||
.video_codec = AV_CODEC_ID_NONE,
|
||||
.write_header = amr_write_header,
|
||||
.write_packet = amr_write_packet,
|
||||
.write_packet = ff_raw_write_packet,
|
||||
.flags = AVFMT_NOTIMESTAMPS,
|
||||
};
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user