From 22c1f65fa6d03995be96c107a5bd3b9ee7e54cab Mon Sep 17 00:00:00 2001 From: Luca Abeni Date: Mon, 18 Jan 2010 13:44:12 +0000 Subject: [PATCH] Rename the RTP muxer sources so that the packetisation functions are in rtpenc_*.c files. Originally committed as revision 21284 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/Makefile | 8 ++++---- libavformat/{rtp_aac.c => rtpenc_aac.c} | 0 libavformat/{rtp_amr.c => rtpenc_amr.c} | 0 libavformat/{rtp_h263.c => rtpenc_h263.c} | 0 libavformat/{rtp_mpv.c => rtpenc_mpv.c} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename libavformat/{rtp_aac.c => rtpenc_aac.c} (100%) rename libavformat/{rtp_amr.c => rtpenc_amr.c} (100%) rename libavformat/{rtp_h263.c => rtpenc_h263.c} (100%) rename libavformat/{rtp_mpv.c => rtpenc_mpv.c} (100%) diff --git a/libavformat/Makefile b/libavformat/Makefile index 18c3f2504d..293f9d36d0 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -201,10 +201,10 @@ OBJS-$(CONFIG_ROQ_DEMUXER) += idroq.o OBJS-$(CONFIG_ROQ_MUXER) += raw.o OBJS-$(CONFIG_RPL_DEMUXER) += rpl.o OBJS-$(CONFIG_RTP_MUXER) += rtp.o \ - rtp_aac.o \ - rtp_amr.o \ - rtp_h263.o \ - rtp_mpv.o \ + rtpenc_aac.o \ + rtpenc_amr.o \ + rtpenc_h263.o \ + rtpenc_mpv.o \ rtpenc.o \ rtpenc_h264.o \ avc.o diff --git a/libavformat/rtp_aac.c b/libavformat/rtpenc_aac.c similarity index 100% rename from libavformat/rtp_aac.c rename to libavformat/rtpenc_aac.c diff --git a/libavformat/rtp_amr.c b/libavformat/rtpenc_amr.c similarity index 100% rename from libavformat/rtp_amr.c rename to libavformat/rtpenc_amr.c diff --git a/libavformat/rtp_h263.c b/libavformat/rtpenc_h263.c similarity index 100% rename from libavformat/rtp_h263.c rename to libavformat/rtpenc_h263.c diff --git a/libavformat/rtp_mpv.c b/libavformat/rtpenc_mpv.c similarity index 100% rename from libavformat/rtp_mpv.c rename to libavformat/rtpenc_mpv.c