[FFmpeg-cvslog] h264: move is_complex into the per-slice context

Anton Khirnov git at videolan.org
Sat Mar 21 16:18:12 CET 2015


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sat Jan 17 22:28:46 2015 +0100| [07c5ca551b7327d3c4e33738cc0cd2d5ac2779fa] | committer: Anton Khirnov

h264: move is_complex into the per-slice context

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

 libavcodec/h264.h       |    3 +--
 libavcodec/h264_mb.c    |    2 +-
 libavcodec/h264_slice.c |    6 +++---
 libavcodec/svq3.c       |    5 ++++-
 4 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 04ed625..0b29777 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -357,6 +357,7 @@ typedef struct H264SliceContext {
     ptrdiff_t mb_uvlinesize;
 
     int mb_skip_run;
+    int is_complex;
 
     int redundant_pic_count;
 
@@ -532,8 +533,6 @@ typedef struct H264Context {
     int mb_num;
     int mb_xy;
 
-    int is_complex;
-
     // =============================================================
     // Things below are not used in the MB or more inner code
 
diff --git a/libavcodec/h264_mb.c b/libavcodec/h264_mb.c
index d29e2c6..09d31ec 100644
--- a/libavcodec/h264_mb.c
+++ b/libavcodec/h264_mb.c
@@ -814,7 +814,7 @@ void ff_h264_hl_decode_mb(H264Context *h, H264SliceContext *sl)
 {
     const int mb_xy   = h->mb_xy;
     const int mb_type = h->cur_pic.mb_type[mb_xy];
-    int is_complex    = CONFIG_SMALL || h->is_complex ||
+    int is_complex    = CONFIG_SMALL || sl->is_complex ||
                         IS_INTRA_PCM(mb_type) || sl->qscale == 0;
 
     if (CHROMA444(h)) {
diff --git a/libavcodec/h264_slice.c b/libavcodec/h264_slice.c
index 43185c5..1e233ad 100644
--- a/libavcodec/h264_slice.c
+++ b/libavcodec/h264_slice.c
@@ -2185,9 +2185,9 @@ static int decode_slice(struct AVCodecContext *avctx, void *arg)
 
     sl->mb_skip_run = -1;
 
-    h->is_complex = FRAME_MBAFF(h) || h->picture_structure != PICT_FRAME ||
-                    avctx->codec_id != AV_CODEC_ID_H264 ||
-                    (CONFIG_GRAY && (h->flags & CODEC_FLAG_GRAY));
+    sl->is_complex = FRAME_MBAFF(h) || h->picture_structure != PICT_FRAME ||
+                     avctx->codec_id != AV_CODEC_ID_H264 ||
+                     (CONFIG_GRAY && (h->flags & CODEC_FLAG_GRAY));
 
     if (h->pps.cabac) {
         /* realign */
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index d8aefa6..cb418c6 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -866,6 +866,7 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx)
 {
     SVQ3Context *s = avctx->priv_data;
     H264Context *h = &s->h;
+    H264SliceContext *sl;
     int m;
     unsigned char *extradata;
     unsigned char *extradata_end;
@@ -888,8 +889,10 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx)
     ff_hpeldsp_init(&s->hdsp, avctx->flags);
     ff_tpeldsp_init(&s->tdsp);
 
+    sl = h->slice_ctx;
+
     h->flags           = avctx->flags;
-    h->is_complex      = 1;
+    sl->is_complex     = 1;
     h->picture_structure = PICT_FRAME;
     avctx->pix_fmt     = AV_PIX_FMT_YUVJ420P;
     avctx->color_range = AVCOL_RANGE_JPEG;



More information about the ffmpeg-cvslog mailing list