diff mbox

[FFmpeg-devel,v1] avcodec/h264_parse: decode sps before pps

Message ID 20191007214220.20060-1-junli1026@gmail.com
State Superseded
Headers show

Commit Message

Jun Li Oct. 7, 2019, 9:42 p.m. UTC
Fix ticket #6422
The content put pps before sps, which is not a common case. The change
just put decoding sps before pps, just for compability.

Signed-off-by: Jun Li <junli1026@gmail.com>
---
 libavcodec/h264_parse.c | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

Comments

Fu, Linjie Oct. 8, 2019, 2:50 a.m. UTC | #1
> -----Original Message-----

> From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of Jun

> Li

> Sent: Tuesday, October 8, 2019 05:42

> To: ffmpeg-devel@ffmpeg.org

> Subject: [FFmpeg-devel] [PATCH v1] avcodec/h264_parse: decode sps

> before pps

> 

> Fix ticket #6422

> The content put pps before sps, which is not a common case. The change

> just put decoding sps before pps, just for compability.

> 

> Signed-off-by: Jun Li <junli1026@gmail.com>

> ---

>  libavcodec/h264_parse.c | 21 +++++++++++----------

>  1 file changed, 11 insertions(+), 10 deletions(-)

> 

> diff --git a/libavcodec/h264_parse.c b/libavcodec/h264_parse.c

> index 352ffea948..26aaa751ad 100644

> --- a/libavcodec/h264_parse.c

> +++ b/libavcodec/h264_parse.c

> @@ -373,35 +373,36 @@ static int decode_extradata_ps(const uint8_t *data,

> int size, H264ParamSets *ps,

>          goto fail;

>      }

> 

> -    for (i = 0; i < pkt.nb_nals; i++) {

> +    /* decode sps before pps, just in case some bitstream put pps before sps.

> */

> +    for(i = 0; i < pkt.nb_nals; i++) {


Nit: Missing space here.

- linjie
Jun Li Oct. 8, 2019, 3:13 a.m. UTC | #2
On Mon, Oct 7, 2019 at 7:50 PM Fu, Linjie <linjie.fu@intel.com> wrote:

> > -----Original Message-----
> > From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of Jun
> > Li
> > Sent: Tuesday, October 8, 2019 05:42
> > To: ffmpeg-devel@ffmpeg.org
> > Subject: [FFmpeg-devel] [PATCH v1] avcodec/h264_parse: decode sps
> > before pps
> >
> > Fix ticket #6422
> > The content put pps before sps, which is not a common case. The change
> > just put decoding sps before pps, just for compability.
> >
> > Signed-off-by: Jun Li <junli1026@gmail.com>
> > ---
> >  libavcodec/h264_parse.c | 21 +++++++++++----------
> >  1 file changed, 11 insertions(+), 10 deletions(-)
> >
> > diff --git a/libavcodec/h264_parse.c b/libavcodec/h264_parse.c
> > index 352ffea948..26aaa751ad 100644
> > --- a/libavcodec/h264_parse.c
> > +++ b/libavcodec/h264_parse.c
> > @@ -373,35 +373,36 @@ static int decode_extradata_ps(const uint8_t *data,
> > int size, H264ParamSets *ps,
> >          goto fail;
> >      }
> >
> > -    for (i = 0; i < pkt.nb_nals; i++) {
> > +    /* decode sps before pps, just in case some bitstream put pps
> before sps.
> > */
> > +    for(i = 0; i < pkt.nb_nals; i++) {
>
> Nit: Missing space here.


Thanks, will fix in next iteration.


>
>
- linjie
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
diff mbox

Patch

diff --git a/libavcodec/h264_parse.c b/libavcodec/h264_parse.c
index 352ffea948..26aaa751ad 100644
--- a/libavcodec/h264_parse.c
+++ b/libavcodec/h264_parse.c
@@ -373,35 +373,36 @@  static int decode_extradata_ps(const uint8_t *data, int size, H264ParamSets *ps,
         goto fail;
     }
 
-    for (i = 0; i < pkt.nb_nals; i++) {
+    /* decode sps before pps, just in case some bitstream put pps before sps. */
+    for(i = 0; i < pkt.nb_nals; i++) {
         H2645NAL *nal = &pkt.nals[i];
-        switch (nal->type) {
-        case H264_NAL_SPS: {
+        if (nal->type == H264_NAL_SPS) {
             GetBitContext tmp_gb = nal->gb;
             ret = ff_h264_decode_seq_parameter_set(&tmp_gb, logctx, ps, 0);
             if (ret >= 0)
-                break;
+                continue;
             av_log(logctx, AV_LOG_DEBUG,
                    "SPS decoding failure, trying again with the complete NAL\n");
             init_get_bits8(&tmp_gb, nal->raw_data + 1, nal->raw_size - 1);
             ret = ff_h264_decode_seq_parameter_set(&tmp_gb, logctx, ps, 0);
             if (ret >= 0)
-                break;
+                continue;
             ret = ff_h264_decode_seq_parameter_set(&nal->gb, logctx, ps, 1);
             if (ret < 0)
                 goto fail;
-            break;
         }
-        case H264_NAL_PPS:
+    }
+
+    for (i = 0; i < pkt.nb_nals; i++) {
+        H2645NAL *nal = &pkt.nals[i];
+        if (nal->type == H264_NAL_PPS) {
             ret = ff_h264_decode_picture_parameter_set(&nal->gb, logctx, ps,
                                                        nal->size_bits);
             if (ret < 0)
                 goto fail;
-            break;
-        default:
+        } else if (nal->type != H264_NAL_SPS) {
             av_log(logctx, AV_LOG_VERBOSE, "Ignoring NAL type %d in extradata\n",
                    nal->type);
-            break;
         }
     }