[FFmpeg-cvslog] Merge commit 'a4d126dc59c39bb03e5e444432d1b27af26a45b4'

Derek Buitenhuis git at videolan.org
Tue May 3 11:52:38 CEST 2016


ffmpeg | branch: master | Derek Buitenhuis <derek.buitenhuis at gmail.com> | Tue May  3 10:52:04 2016 +0100| [43b7e5aa3204b8590b24bd9fca91a3e494f52edd] | committer: Derek Buitenhuis

Merge commit 'a4d126dc59c39bb03e5e444432d1b27af26a45b4'

* commit 'a4d126dc59c39bb03e5e444432d1b27af26a45b4':
  svq3: eliminate remaining H264Context usage.

Merged-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>

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

 libavcodec/svq3.c |   92 ++++++++++++++++++++---------------------------------
 1 file changed, 34 insertions(+), 58 deletions(-)

diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index 0b3c1c1..312c099 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -47,7 +47,6 @@
 #include "avcodec.h"
 #include "mpegutils.h"
 #include "h264.h"
-#include "h264_mvpred.h"
 #include "h264data.h"
 #include "golomb.h"
 #include "hpeldsp.h"
@@ -68,7 +67,7 @@
  */
 
 typedef struct SVQ3Context {
-    H264Context h;
+    AVCodecContext *avctx;
 
     H264DSPContext  h264dsp;
     H264PredContext hpc;
@@ -103,6 +102,7 @@ typedef struct SVQ3Context {
     int prev_frame_num;
 
     enum AVPictureType pict_type;
+    int low_delay;
 
     int mb_x, mb_y;
     int mb_xy;
@@ -417,7 +417,6 @@ static inline void svq3_mc_dir_part(SVQ3Context *s,
                                     int mx, int my, int dxy,
                                     int thirdpel, int dir, int avg)
 {
-    H264Context *h = &s->h;
     const H264Picture *pic = (dir == 0) ? s->last_pic : s->next_pic;
     uint8_t *src, *dest;
     int i, emu = 0;
@@ -455,7 +454,7 @@ static inline void svq3_mc_dir_part(SVQ3Context *s,
              : s->hdsp.put_pixels_tab)[blocksize][dxy](dest, src, linesize,
                                                        height);
 
-    if (!(h->flags & AV_CODEC_FLAG_GRAY)) {
+    if (!(s->avctx->flags & AV_CODEC_FLAG_GRAY)) {
         mx     = mx + (mx < (int) x) >> 1;
         my     = my + (my < (int) y) >> 1;
         width  = width  >> 1;
@@ -492,7 +491,6 @@ static inline int svq3_mc_dir(SVQ3Context *s, int size, int mode,
                               int dir, int avg)
 {
     int i, j, k, mx, my, dx, dy, x, y;
-    H264Context *h          = &s->h;
     const int part_width    = ((size & 5) == 4) ? 4 : 16 >> (size & 1);
     const int part_height   = 16 >> ((unsigned)(size + 1) / 3);
     const int extra_width   = (mode == PREDICT_MODE) ? -16 * 6 : 0;
@@ -540,7 +538,7 @@ static inline int svq3_mc_dir(SVQ3Context *s, int size, int mode,
                 dx = svq3_get_se_golomb(&s->gb_slice);
 
                 if (dx == INVALID_VLC || dy == INVALID_VLC) {
-                    av_log(h->avctx, AV_LOG_ERROR, "invalid MV vlc\n");
+                    av_log(s->avctx, AV_LOG_ERROR, "invalid MV vlc\n");
                     return -1;
                 }
             }
@@ -623,7 +621,6 @@ static av_always_inline int dctcoef_get(int16_t *mb, int index)
 }
 
 static av_always_inline void hl_decode_mb_predict_luma(SVQ3Context *s,
-                                                       const H264Context *h,
                                                        int mb_type,
                                                        const int *block_offset,
                                                        int linesize,
@@ -662,7 +659,7 @@ static av_always_inline void hl_decode_mb_predict_luma(SVQ3Context *s,
     }
 }
 
-static void hl_decode_mb(SVQ3Context *s, const H264Context *h)
+static void hl_decode_mb(SVQ3Context *s)
 {
     const int mb_x    = s->mb_x;
     const int mb_y    = s->mb_y;
@@ -672,7 +669,7 @@ static void hl_decode_mb(SVQ3Context *s, const H264Context *h)
     int linesize, uvlinesize;
     int i, j;
     const int *block_offset = &s->block_offset[0];
-    const int block_h   = 16 >> h->chroma_y_shift;
+    const int block_h   = 16 >> 1;
 
     linesize   = s->cur_pic->f->linesize[0];
     uvlinesize = s->cur_pic->f->linesize[1];
@@ -688,7 +685,7 @@ static void hl_decode_mb(SVQ3Context *s, const H264Context *h)
         s->hpc.pred8x8[s->chroma_pred_mode](dest_cb, uvlinesize);
         s->hpc.pred8x8[s->chroma_pred_mode](dest_cr, uvlinesize);
 
-        hl_decode_mb_predict_luma(s, h, mb_type, block_offset, linesize, dest_y);
+        hl_decode_mb_predict_luma(s, mb_type, block_offset, linesize, dest_y);
     }
 
     hl_decode_mb_idct_luma(s, mb_type, block_offset, linesize, dest_y);
@@ -712,7 +709,6 @@ static void hl_decode_mb(SVQ3Context *s, const H264Context *h)
 
 static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
 {
-    H264Context *h = &s->h;
     int i, j, k, m, dir, mode;
     int cbp = 0;
     uint32_t vlc;
@@ -853,7 +849,7 @@ static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
                 vlc = svq3_get_ue_golomb(&s->gb_slice);
 
                 if (vlc >= 25U) {
-                    av_log(h->avctx, AV_LOG_ERROR,
+                    av_log(s->avctx, AV_LOG_ERROR,
                            "luma prediction:%"PRIu32"\n", vlc);
                     return -1;
                 }
@@ -865,7 +861,7 @@ static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
                 left[2] = svq3_pred_1[top[1] + 1][left[1] + 1][svq3_pred_0[vlc][1]];
 
                 if (left[1] == -1 || left[2] == -1) {
-                    av_log(h->avctx, AV_LOG_ERROR, "weird prediction\n");
+                    av_log(s->avctx, AV_LOG_ERROR, "weird prediction\n");
                     return -1;
                 }
             }
@@ -881,7 +877,7 @@ static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
 
         if (mb_type == 8) {
             ff_h264_check_intra4x4_pred_mode(s->intra4x4_pred_mode_cache,
-                                             h->avctx, s->top_samples_available,
+                                             s->avctx, s->top_samples_available,
                                              s->left_samples_available);
 
             s->top_samples_available  = (s->mb_y == 0) ? 0x33FF : 0xFFFF;
@@ -899,9 +895,9 @@ static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
         dir = ff_h264_i_mb_type_info[mb_type - 8].pred_mode;
         dir = (dir >> 1) ^ 3 * (dir & 1) ^ 1;
 
-        if ((s->intra16x16_pred_mode = ff_h264_check_intra_pred_mode(h->avctx, s->top_samples_available,
+        if ((s->intra16x16_pred_mode = ff_h264_check_intra_pred_mode(s->avctx, s->top_samples_available,
                                                                      s->left_samples_available, dir, 0)) < 0) {
-            av_log(h->avctx, AV_LOG_ERROR, "ff_h264_check_intra_pred_mode < 0\n");
+            av_log(s->avctx, AV_LOG_ERROR, "ff_h264_check_intra_pred_mode < 0\n");
             return s->intra16x16_pred_mode;
         }
 
@@ -929,7 +925,7 @@ static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
     if (!IS_INTRA16x16(mb_type) &&
         (!IS_SKIP(mb_type) || s->pict_type == AV_PICTURE_TYPE_B)) {
         if ((vlc = svq3_get_ue_golomb(&s->gb_slice)) >= 48U){
-            av_log(h->avctx, AV_LOG_ERROR, "cbp_vlc=%"PRIu32"\n", vlc);
+            av_log(s->avctx, AV_LOG_ERROR, "cbp_vlc=%"PRIu32"\n", vlc);
             return -1;
         }
 
@@ -941,7 +937,7 @@ static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
         s->qscale += svq3_get_se_golomb(&s->gb_slice);
 
         if (s->qscale > 31u) {
-            av_log(h->avctx, AV_LOG_ERROR, "qscale:%d\n", s->qscale);
+            av_log(s->avctx, AV_LOG_ERROR, "qscale:%d\n", s->qscale);
             return -1;
         }
     }
@@ -949,7 +945,7 @@ static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
         AV_ZERO128(s->mb_luma_dc[0] + 0);
         AV_ZERO128(s->mb_luma_dc[0] + 8);
         if (svq3_decode_block(&s->gb_slice, s->mb_luma_dc[0], 0, 1)) {
-            av_log(h->avctx, AV_LOG_ERROR,
+            av_log(s->avctx, AV_LOG_ERROR,
                    "error while decoding intra luma dc\n");
             return -1;
         }
@@ -968,7 +964,7 @@ static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
                     s->non_zero_count_cache[scan8[k]] = 1;
 
                     if (svq3_decode_block(&s->gb_slice, &s->mb[16 * k], index, type)) {
-                        av_log(h->avctx, AV_LOG_ERROR,
+                        av_log(s->avctx, AV_LOG_ERROR,
                                "error while decoding block\n");
                         return -1;
                     }
@@ -978,7 +974,7 @@ static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
         if ((cbp & 0x30)) {
             for (i = 1; i < 3; ++i)
                 if (svq3_decode_block(&s->gb_slice, &s->mb[16 * 16 * i], 0, 3)) {
-                    av_log(h->avctx, AV_LOG_ERROR,
+                    av_log(s->avctx, AV_LOG_ERROR,
                            "error while decoding chroma dc block\n");
                     return -1;
                 }
@@ -990,7 +986,7 @@ static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
                         s->non_zero_count_cache[scan8[k]] = 1;
 
                         if (svq3_decode_block(&s->gb_slice, &s->mb[16 * k], 1, 1)) {
-                            av_log(h->avctx, AV_LOG_ERROR,
+                            av_log(s->avctx, AV_LOG_ERROR,
                                    "error while decoding chroma ac block\n");
                             return -1;
                         }
@@ -1004,7 +1000,7 @@ static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
     s->cur_pic->mb_type[mb_xy] = mb_type;
 
     if (IS_INTRA(mb_type))
-        s->chroma_pred_mode = ff_h264_check_intra_pred_mode(h->avctx, s->top_samples_available,
+        s->chroma_pred_mode = ff_h264_check_intra_pred_mode(s->avctx, s->top_samples_available,
                                                             s->left_samples_available, DC_PRED8x8, 1);
 
     return 0;
@@ -1013,7 +1009,6 @@ static int svq3_decode_mb(SVQ3Context *s, unsigned int mb_type)
 static int svq3_decode_slice_header(AVCodecContext *avctx)
 {
     SVQ3Context *s = avctx->priv_data;
-    H264Context *h    = &s->h;
     const int mb_xy   = s->mb_xy;
     int i, header;
     unsigned slice_id;
@@ -1058,7 +1053,7 @@ static int svq3_decode_slice_header(AVCodecContext *avctx)
     }
 
     if ((slice_id = svq3_get_ue_golomb(&s->gb_slice)) >= 3) {
-        av_log(h->avctx, AV_LOG_ERROR, "illegal slice type %u \n", slice_id);
+        av_log(s->avctx, AV_LOG_ERROR, "illegal slice type %u \n", slice_id);
         return -1;
     }
 
@@ -1122,7 +1117,6 @@ static void init_dequant4_coeff_table(SVQ3Context *s)
 static av_cold int svq3_decode_init(AVCodecContext *avctx)
 {
     SVQ3Context *s = avctx->priv_data;
-    H264Context *h = &s->h;
     int m, x, y;
     unsigned char *extradata;
     unsigned char *extradata_end;
@@ -1144,35 +1138,20 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx)
     if (!s->cur_pic->f || !s->last_pic->f || !s->next_pic->f)
         return AVERROR(ENOMEM);
 
-    if ((ret = ff_h264_decode_init(avctx)) < 0)
-        goto fail;
-
-    // we will overwrite it later during decoding
-    av_frame_free(&h->cur_pic.f);
-
-    av_frame_free(&h->last_pic_for_ec.f);
-
     ff_h264dsp_init(&s->h264dsp, 8, 1);
-    av_assert0(h->sps.bit_depth_chroma == 0);
     ff_h264_pred_init(&s->hpc, AV_CODEC_ID_SVQ3, 8, 1);
     ff_videodsp_init(&s->vdsp, 8);
 
 
     avctx->bits_per_raw_sample = 8;
-    h->sps.bit_depth_luma = 8;
-    h->chroma_format_idc = 1;
 
     ff_hpeldsp_init(&s->hdsp, avctx->flags);
     ff_tpeldsp_init(&s->tdsp);
 
-    h->flags           = avctx->flags;
-    h->sps.chroma_format_idc = 1;
-    h->picture_structure = PICT_FRAME;
     avctx->pix_fmt     = AV_PIX_FMT_YUVJ420P;
     avctx->color_range = AVCOL_RANGE_JPEG;
 
-    h->chroma_x_shift = h->chroma_y_shift = 1;
-
+    s->avctx         = avctx;
     s->halfpel_flag  = 1;
     s->thirdpel_flag = 1;
     s->has_watermark = 0;
@@ -1249,7 +1228,7 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx)
         unk2 = get_bits1(&gb);
         unk3 = get_bits1(&gb);
 
-        h->low_delay = get_bits1(&gb);
+        s->low_delay = get_bits1(&gb);
 
         /* unknown field */
         unk4 = get_bits1(&gb);
@@ -1263,7 +1242,7 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx)
         }
 
         s->has_watermark  = get_bits1(&gb);
-        avctx->has_b_frames = !h->low_delay;
+        avctx->has_b_frames = !s->low_delay;
         if (s->has_watermark) {
 #if CONFIG_ZLIB
             unsigned watermark_width  = svq3_get_ue_golomb(&gb);
@@ -1411,7 +1390,6 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data,
                              int *got_frame, AVPacket *avpkt)
 {
     SVQ3Context *s     = avctx->priv_data;
-    H264Context *h     = &s->h;
     int buf_size       = avpkt->size;
     int left;
     uint8_t *buf;
@@ -1419,7 +1397,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data,
 
     /* special case for last picture */
     if (buf_size == 0) {
-        if (s->next_pic->f->data[0] && !h->low_delay && !s->last_frame_output) {
+        if (s->next_pic->f->data[0] && !s->low_delay && !s->last_frame_output) {
             ret = av_frame_ref(data, s->next_pic->f);
             if (ret < 0)
                 return ret;
@@ -1501,7 +1479,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data,
     }
 
     if (avctx->debug & FF_DEBUG_PICT_INFO)
-        av_log(h->avctx, AV_LOG_DEBUG,
+        av_log(s->avctx, AV_LOG_DEBUG,
                "%c hpel:%d, tpel:%d aqp:%d qp:%d, slice_num:%02X\n",
                av_get_picture_type_char(s->pict_type),
                s->halfpel_flag, s->thirdpel_flag,
@@ -1526,7 +1504,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data,
             s->frame_num_offset += 256;
         if (s->frame_num_offset == 0 ||
             s->frame_num_offset >= s->prev_frame_num_offset) {
-            av_log(h->avctx, AV_LOG_ERROR, "error in B-frame picture id\n");
+            av_log(s->avctx, AV_LOG_ERROR, "error in B-frame picture id\n");
             return -1;
         }
     } else {
@@ -1571,28 +1549,28 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data,
             else if (s->pict_type == AV_PICTURE_TYPE_B && mb_type >= 4)
                 mb_type += 4;
             if (mb_type > 33 || svq3_decode_mb(s, mb_type)) {
-                av_log(h->avctx, AV_LOG_ERROR,
+                av_log(s->avctx, AV_LOG_ERROR,
                        "error while decoding MB %d %d\n", s->mb_x, s->mb_y);
                 return -1;
             }
 
             if (mb_type != 0 || s->cbp)
-                hl_decode_mb(s, h);
+                hl_decode_mb(s);
 
-            if (s->pict_type != AV_PICTURE_TYPE_B && !h->low_delay)
+            if (s->pict_type != AV_PICTURE_TYPE_B && !s->low_delay)
                 s->cur_pic->mb_type[s->mb_x + s->mb_y * s->mb_stride] =
                     (s->pict_type == AV_PICTURE_TYPE_P && mb_type < 8) ? (mb_type - 1) : -1;
         }
 
         ff_draw_horiz_band(avctx, s->cur_pic->f,
                            s->last_pic->f->data[0] ? s->last_pic->f : NULL,
-                           16 * s->mb_y, 16, h->picture_structure, 0,
-                           h->low_delay);
+                           16 * s->mb_y, 16, PICT_FRAME, 0,
+                           s->low_delay);
     }
 
     left = buf_size*8 - get_bits_count(&s->gb_slice);
 
-    if (s->mb_y != h->mb_height || s->mb_x != h->mb_width) {
+    if (s->mb_y != s->mb_height || s->mb_x != s->mb_width) {
         av_log(avctx, AV_LOG_INFO, "frame num %d incomplete pic x %d y %d left %d\n", avctx->frame_number, s->mb_y, s->mb_x, left);
         //av_hex_dump(stderr, buf+buf_size-8, 8);
     }
@@ -1602,7 +1580,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data,
         return -1;
     }
 
-    if (s->pict_type == AV_PICTURE_TYPE_B || h->low_delay)
+    if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay)
         ret = av_frame_ref(data, s->cur_pic->f);
     else if (s->last_pic->f->data[0])
         ret = av_frame_ref(data, s->last_pic->f);
@@ -1610,7 +1588,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data,
         return ret;
 
     /* Do not output the last pic after seeking. */
-    if (s->last_pic->f->data[0] || h->low_delay)
+    if (s->last_pic->f->data[0] || s->low_delay)
         *got_frame = 1;
 
     if (s->pict_type != AV_PICTURE_TYPE_B) {
@@ -1625,7 +1603,6 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data,
 static av_cold int svq3_decode_end(AVCodecContext *avctx)
 {
     SVQ3Context *s = avctx->priv_data;
-    H264Context *h = &s->h;
 
     free_picture(avctx, s->cur_pic);
     free_picture(avctx, s->next_pic);
@@ -1641,7 +1618,6 @@ static av_cold int svq3_decode_end(AVCodecContext *avctx)
     av_freep(&s->edge_emu_buffer);
     av_freep(&s->mb2br_xy);
 
-    ff_h264_free_context(h);
 
     av_freep(&s->buf);
     s->buf_size = 0;


======================================================================

diff --cc libavcodec/svq3.c
index 0b3c1c1,d5079f3..312c099
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@@ -47,8 -47,6 +47,7 @@@
  #include "avcodec.h"
  #include "mpegutils.h"
  #include "h264.h"
- #include "h264_mvpred.h"
 +#include "h264data.h"
  #include "golomb.h"
  #include "hpeldsp.h"
  #include "mathops.h"
@@@ -852,8 -840,8 +848,8 @@@ static int svq3_decode_mb(SVQ3Context *
              for (i = 0; i < 16; i += 2) {
                  vlc = svq3_get_ue_golomb(&s->gb_slice);
  
 -                if (vlc >= 25) {
 +                if (vlc >= 25U) {
-                     av_log(h->avctx, AV_LOG_ERROR,
+                     av_log(s->avctx, AV_LOG_ERROR,
                             "luma prediction:%"PRIu32"\n", vlc);
                      return -1;
                  }
@@@ -928,8 -916,8 +924,8 @@@
  
      if (!IS_INTRA16x16(mb_type) &&
          (!IS_SKIP(mb_type) || s->pict_type == AV_PICTURE_TYPE_B)) {
 -        if ((vlc = svq3_get_ue_golomb(&s->gb_slice)) >= 48) {
 +        if ((vlc = svq3_get_ue_golomb(&s->gb_slice)) >= 48U){
-             av_log(h->avctx, AV_LOG_ERROR, "cbp_vlc=%"PRIu32"\n", vlc);
+             av_log(s->avctx, AV_LOG_ERROR, "cbp_vlc=%"PRIu32"\n", vlc);
              return -1;
          }
  
@@@ -1156,26 -1135,16 +1142,19 @@@ static av_cold int svq3_decode_init(AVC
      ff_h264_pred_init(&s->hpc, AV_CODEC_ID_SVQ3, 8, 1);
      ff_videodsp_init(&s->vdsp, 8);
  
 +
 +    avctx->bits_per_raw_sample = 8;
-     h->sps.bit_depth_luma = 8;
-     h->chroma_format_idc = 1;
 +
      ff_hpeldsp_init(&s->hdsp, avctx->flags);
      ff_tpeldsp_init(&s->tdsp);
  
      avctx->pix_fmt     = AV_PIX_FMT_YUVJ420P;
      avctx->color_range = AVCOL_RANGE_JPEG;
  
-     h->chroma_x_shift = h->chroma_y_shift = 1;
- 
+     s->avctx         = avctx;
      s->halfpel_flag  = 1;
      s->thirdpel_flag = 1;
 -    s->unknown_flag  = 0;
 +    s->has_watermark = 0;
  
      /* prowl for the "SEQH" marker in the extradata */
      extradata     = (unsigned char *)avctx->extradata;
@@@ -1244,27 -1210,22 +1223,27 @@@
          s->thirdpel_flag = get_bits1(&gb);
  
          /* unknown fields */
 -        skip_bits1(&gb);
 -        skip_bits1(&gb);
 -        skip_bits1(&gb);
 -        skip_bits1(&gb);
 +        unk0 = get_bits1(&gb);
 +        unk1 = get_bits1(&gb);
 +        unk2 = get_bits1(&gb);
 +        unk3 = get_bits1(&gb);
  
-         h->low_delay = get_bits1(&gb);
+         s->low_delay = get_bits1(&gb);
  
          /* unknown field */
 -        skip_bits1(&gb);
 +        unk4 = get_bits1(&gb);
  
 -        while (get_bits1(&gb))
 -            skip_bits(&gb, 8);
 +        av_log(avctx, AV_LOG_DEBUG, "Unknown fields %d %d %d %d %d\n",
 +               unk0, unk1, unk2, unk3, unk4);
  
 -        s->unknown_flag  = get_bits1(&gb);
 +        if (skip_1stop_8data_bits(&gb) < 0) {
 +            ret = AVERROR_INVALIDDATA;
 +            goto fail;
 +        }
 +
 +        s->has_watermark  = get_bits1(&gb);
-         avctx->has_b_frames = !h->low_delay;
+         avctx->has_b_frames = !s->low_delay;
 -        if (s->unknown_flag) {
 +        if (s->has_watermark) {
  #if CONFIG_ZLIB
              unsigned watermark_width  = svq3_get_ue_golomb(&gb);
              unsigned watermark_height = svq3_get_ue_golomb(&gb);
@@@ -1410,11 -1360,9 +1389,10 @@@ fail
  static int svq3_decode_frame(AVCodecContext *avctx, void *data,
                               int *got_frame, AVPacket *avpkt)
  {
 -    const uint8_t *buf = avpkt->data;
      SVQ3Context *s     = avctx->priv_data;
-     H264Context *h     = &s->h;
      int buf_size       = avpkt->size;
 +    int left;
 +    uint8_t *buf;
      int ret, m, i;
  
      /* special case for last picture */
@@@ -1576,33 -1512,21 +1554,33 @@@
                  return -1;
              }
  
 -            if (mb_type != 0)
 +            if (mb_type != 0 || s->cbp)
-                 hl_decode_mb(s, h);
+                 hl_decode_mb(s);
  
-             if (s->pict_type != AV_PICTURE_TYPE_B && !h->low_delay)
+             if (s->pict_type != AV_PICTURE_TYPE_B && !s->low_delay)
                  s->cur_pic->mb_type[s->mb_x + s->mb_y * s->mb_stride] =
                      (s->pict_type == AV_PICTURE_TYPE_P && mb_type < 8) ? (mb_type - 1) : -1;
          }
  
          ff_draw_horiz_band(avctx, s->cur_pic->f,
                             s->last_pic->f->data[0] ? s->last_pic->f : NULL,
-                            16 * s->mb_y, 16, h->picture_structure, 0,
-                            h->low_delay);
+                            16 * s->mb_y, 16, PICT_FRAME, 0,
+                            s->low_delay);
      }
  
 +    left = buf_size*8 - get_bits_count(&s->gb_slice);
 +
-     if (s->mb_y != h->mb_height || s->mb_x != h->mb_width) {
++    if (s->mb_y != s->mb_height || s->mb_x != s->mb_width) {
 +        av_log(avctx, AV_LOG_INFO, "frame num %d incomplete pic x %d y %d left %d\n", avctx->frame_number, s->mb_y, s->mb_x, left);
 +        //av_hex_dump(stderr, buf+buf_size-8, 8);
 +    }
 +
 +    if (left < 0) {
 +        av_log(avctx, AV_LOG_ERROR, "frame num %d left %d\n", avctx->frame_number, left);
 +        return -1;
 +    }
 +
-     if (s->pict_type == AV_PICTURE_TYPE_B || h->low_delay)
+     if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay)
          ret = av_frame_ref(data, s->cur_pic->f);
      else if (s->last_pic->f->data[0])
          ret = av_frame_ref(data, s->last_pic->f);
@@@ -1641,11 -1564,6 +1618,10 @@@ static av_cold int svq3_decode_end(AVCo
      av_freep(&s->edge_emu_buffer);
      av_freep(&s->mb2br_xy);
  
-     ff_h264_free_context(h);
 +
 +    av_freep(&s->buf);
 +    s->buf_size = 0;
 +
      return 0;
  }
  



More information about the ffmpeg-cvslog mailing list