Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-07-13 01:52:18 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2015-07-13 02:09:21 +0300
commit99558270ed1e1c0d8906439b47085860ee0b08bd (patch)
tree1ce2a0eb9ea06f631ca19beeface093a6d76b8b6 /libavcodec/hevc.h
parentad92410d900b985cdabc499f0badaad72dd5ea2d (diff)
avcodec/hevc: Simplify skipped_bytes_pos code further
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r--libavcodec/hevc.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h
index 8ae1ace3ac..2c1aff77b3 100644
--- a/libavcodec/hevc.h
+++ b/libavcodec/hevc.h
@@ -761,8 +761,8 @@ typedef struct HEVCNAL {
int temporal_id;
int skipped_bytes;
- int skipped_bytes_pos_size_nal;
- int *skipped_bytes_pos_nal;
+ int skipped_bytes_pos_size;
+ int *skipped_bytes_pos;
} HEVCNAL;
/* an input packet split into unescaped NAL units */
@@ -901,8 +901,6 @@ typedef struct HEVCContext {
int enable_parallel_tiles;
int wpp_err;
- int *skipped_bytes_pos;
- int skipped_bytes_pos_size;
const uint8_t *data;