[FFmpeg-cvslog] rtpenc: Skip redundant initialization

Martin Storsjö git at videolan.org
Sun Mar 1 01:31:16 CET 2015


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Thu Feb 26 13:37:56 2015 +0200| [d4c7fc02f9f59e721e76debf4a595df529707545] | committer: Martin Storsjö

rtpenc: Skip redundant initialization

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d4c7fc02f9f59e721e76debf4a595df529707545
---

 libavformat/rtpenc.c |    4 ----
 1 file changed, 4 deletions(-)

diff --git a/libavformat/rtpenc.c b/libavformat/rtpenc.c
index 9a68c6d..5f1fc84 100644
--- a/libavformat/rtpenc.c
+++ b/libavformat/rtpenc.c
@@ -196,7 +196,6 @@ static int rtp_write_header(AVFormatContext *s1)
         if (n < 1)
             n = 1;
         s->max_payload_size = n * TS_PACKET_SIZE;
-        s->buf_ptr = s->buf;
         break;
     case AV_CODEC_ID_H261:
         if (s1->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
@@ -229,7 +228,6 @@ static int rtp_write_header(AVFormatContext *s1)
         if (!s->max_frames_per_packet)
             s->max_frames_per_packet = 15;
         s->max_frames_per_packet = av_clip(s->max_frames_per_packet, 1, 15);
-        s->num_frames = 0;
         break;
     case AV_CODEC_ID_ADPCM_G722:
         /* Due to a historical error, the clock rate for G722 in RTP is
@@ -273,10 +271,8 @@ static int rtp_write_header(AVFormatContext *s1)
             av_log(s1, AV_LOG_ERROR, "Only mono is supported\n");
             goto fail;
         }
-        s->num_frames = 0;
         break;
     case AV_CODEC_ID_AAC:
-        s->num_frames = 0;
         if (!s->max_frames_per_packet)
             s->max_frames_per_packet = 5;
         break;



More information about the ffmpeg-cvslog mailing list