[FFmpeg-cvslog] movenc: Use defines instead of hardcoded numbers for RTCP types

Martin Storsjö git at videolan.org
Wed Feb 15 02:14:05 CET 2012


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Tue Feb 14 11:10:52 2012 +0200| [df6050188c5bfa4dd7eed62a662506187810249b] | committer: Martin Storsjö

movenc: Use defines instead of hardcoded numbers for RTCP types

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

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

 libavformat/movenchint.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/libavformat/movenchint.c b/libavformat/movenchint.c
index c2025c0..f3eb0f2 100644
--- a/libavformat/movenchint.c
+++ b/libavformat/movenchint.c
@@ -24,6 +24,7 @@
 #include "internal.h"
 #include "rtpenc_chain.h"
 #include "avio_internal.h"
+#include "rtp.h"
 
 int ff_mov_init_hinting(AVFormatContext *s, int index, int src_index)
 {
@@ -332,7 +333,7 @@ static int write_hint_packets(AVIOContext *out, const uint8_t *data,
         size -= 4;
         if (packet_len > size || packet_len <= 12)
             break;
-        if (data[1] >= 200 && data[1] <= 204) {
+        if (data[1] >= RTCP_SR && data[1] <= RTCP_APP) {
             /* RTCP packet, just skip */
             data += packet_len;
             size -= packet_len;



More information about the ffmpeg-cvslog mailing list