diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-01-25 12:58:46 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-01-27 09:04:44 +0100 |
commit | 36779a84051eae6744cc936d91b1d428143665ba (patch) | |
tree | 73a62455823285c33f53e466e8cbb0c5dfd5839e /libavcodec/hevc.h | |
parent | b0593a4bca138f1f026d8c21e8c3daa96800afe2 (diff) | |
download | ffmpeg-36779a84051eae6744cc936d91b1d428143665ba.tar.gz |
hevc: store the escaped/raw bitstream in HEVCNAL
Hardware Accelerators require access to the escaped bitstream.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r-- | libavcodec/hevc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index 37131cd726..c4162e7353 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -692,6 +692,9 @@ typedef struct HEVCNAL { int size; const uint8_t *data; + + int raw_size; + const uint8_t *raw_data; } HEVCNAL; struct HEVCContext; |