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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-01-25 15:01:07 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-01-27 14:37:34 +0300
commit2af82a1ad9f788ec3c1d22e15423996a4b161934 (patch)
tree6036e6676e748554c64eb71bd78989e241a15381 /libavcodec/hevc.h
parentafa3c996fed4097ecfe86b18c264ba57272e1e99 (diff)
hevc: store the escaped/raw bitstream in HEVCNAL
Hardware Accelerators require access to the escaped bitstream. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r--libavcodec/hevc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h
index 8fdefbbdcf..c0fad27c48 100644
--- a/libavcodec/hevc.h
+++ b/libavcodec/hevc.h
@@ -734,6 +734,9 @@ typedef struct HEVCNAL {
int size;
const uint8_t *data;
+
+ int raw_size;
+ const uint8_t *raw_data;
} HEVCNAL;
typedef struct HEVCLocalContext {