summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-04-11 16:04:05 +0200
committerAnton Khirnov <anton@khirnov.net>2016-04-24 10:06:25 +0200
commit0e7772c5e4f1b31e2a3dda714ba4f89b1cca644a (patch)
tree034ade5d40550ac3758a0cf4982b0e4a2fcaf42c /libavcodec
parent7f045c4429e91688f1f2335dd347203431901c06 (diff)
h264: remove unused H264SliceContext.rbsp_buffer
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/h264.c6
-rw-r--r--libavcodec/h264.h4
2 files changed, 1 insertions, 9 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 9d7b69c3b5..9cc0a241fe 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -337,8 +337,6 @@ static av_cold int h264_decode_end(AVCodecContext *avctx)
h->cur_pic_ptr = NULL;
- for (i = 0; i < h->nb_slice_ctx; i++)
- av_freep(&h->slice_ctx[i].rbsp_buffer);
av_freep(&h->slice_ctx);
h->nb_slice_ctx = 0;
@@ -952,9 +950,7 @@ again:
av_log(h->avctx, AV_LOG_ERROR, "decode_slice_header error\n");
sl->ref_count[0] = sl->ref_count[1] = sl->list_count = 0;
} else if (err == 1) {
- /* Slice could not be decoded in parallel mode, restart. Note
- * that rbsp_buffer is not transferred, but since we no longer
- * run in parallel mode this should not be an issue. */
+ /* Slice could not be decoded in parallel mode, restart. */
sl = &h->slice_ctx[0];
goto again;
}
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 6c03e5e0a1..794492740e 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -435,10 +435,6 @@ typedef struct H264SliceContext {
CABACContext cabac;
uint8_t cabac_state[1024];
int cabac_init_idc;
-
- // rbsp buffer used for this slice
- uint8_t *rbsp_buffer;
- unsigned int rbsp_buffer_size;
} H264SliceContext;
/**