[FFmpeg-cvslog] lavc/mediacodecdec_h264: fix SODB escaping

Matthieu Bouron git at videolan.org
Wed Sep 7 16:35:58 EEST 2016


ffmpeg | branch: master | Matthieu Bouron <matthieu.bouron at stupeflix.com> | Tue Sep  6 16:30:07 2016 +0200| [f574012d5fe922684a5befa16828f22fe9a83ce8] | committer: Matthieu Bouron

lavc/mediacodecdec_h264: fix SODB escaping

Fixes escaping of consecutive 0x00, 0x00, 0x0{0-3} sequences.

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

 libavcodec/mediacodecdec_h264.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/mediacodecdec_h264.c b/libavcodec/mediacodecdec_h264.c
index 18f186b..96e2a8a 100644
--- a/libavcodec/mediacodecdec_h264.c
+++ b/libavcodec/mediacodecdec_h264.c
@@ -104,9 +104,9 @@ static int h264_ps_to_nalu(const uint8_t *src, int src_size, uint8_t **out, int
             }
             *out = p = new;
 
-            i = i + 3;
-            memmove(p + i, p + i - 1, *out_size - i);
-            p[i - 1] = 0x03;
+            i = i + 2;
+            memmove(p + i + 1, p + i, *out_size - (i + 1));
+            p[i] = 0x03;
         }
     }
 done:



More information about the ffmpeg-cvslog mailing list