[FFmpeg-cvslog] rtpdec_h264: Prepare h264_handle_packet_stap_a for sharing with hevc

Martin Storsjö git at videolan.org
Sat Feb 21 12:42:05 CET 2015


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Thu Feb 19 21:40:48 2015 +0200| [a3cc519d1f43bf93cc29fd53284a2b8aa6189a9a] | committer: Martin Storsjö

rtpdec_h264: Prepare h264_handle_packet_stap_a for sharing with hevc

Add a parameter for skipping a number of bytes at the start of each nal.

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

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

 libavformat/rtpdec_h264.c |   12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c
index bc563f2..e6c8c26 100644
--- a/libavformat/rtpdec_h264.c
+++ b/libavformat/rtpdec_h264.c
@@ -177,7 +177,8 @@ static int sdp_parse_fmtp_config_h264(AVFormatContext *s,
 }
 
 static int h264_handle_packet_stap_a(AVFormatContext *ctx, AVPacket *pkt,
-                                     const uint8_t *buf, int len)
+                                     const uint8_t *buf, int len,
+                                     int start_skip)
 {
     int pass         = 0;
     int total_length = 0;
@@ -189,6 +190,9 @@ static int h264_handle_packet_stap_a(AVFormatContext *ctx, AVPacket *pkt,
         const uint8_t *src = buf;
         int src_len        = len;
 
+        src     += start_skip;
+        src_len -= start_skip;
+
         while (src_len > 2) {
             uint16_t nal_size = AV_RB16(src);
 
@@ -215,8 +219,8 @@ static int h264_handle_packet_stap_a(AVFormatContext *ctx, AVPacket *pkt,
             }
 
             // eat what we handled
-            src     += nal_size;
-            src_len -= nal_size;
+            src     += nal_size + start_skip;
+            src_len -= nal_size + start_skip;
         }
 
         if (pass == 0) {
@@ -304,7 +308,7 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
         // consume the STAP-A NAL
         buf++;
         len--;
-        result = h264_handle_packet_stap_a(ctx, pkt, buf, len);
+        result = h264_handle_packet_stap_a(ctx, pkt, buf, len, 0);
         break;
 
     case 25:                   // STAP-B



More information about the ffmpeg-cvslog mailing list