diff options
author | James Almer <jamrial@gmail.com> | 2017-03-23 15:12:23 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-03-23 15:14:06 -0300 |
commit | b29c8c995f17156204eb074e12b781a94b02c2a9 (patch) | |
tree | 8c5d8e84609c6890f99285149730d3189c47d1bb /libavcodec/hevc_data.h | |
parent | 5c6efaffd09de059aa5c7fb9d62bc2e53ba96baf (diff) | |
parent | 150c896a9e46b23b97debb0a5f66fbaeaa32f153 (diff) | |
download | ffmpeg-b29c8c995f17156204eb074e12b781a94b02c2a9.tar.gz |
Merge commit '150c896a9e46b23b97debb0a5f66fbaeaa32f153'
* commit '150c896a9e46b23b97debb0a5f66fbaeaa32f153':
hevcdec: split ff_hevc_diag_scan* declarations into a separate header
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/hevc_data.h')
-rw-r--r-- | libavcodec/hevc_data.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libavcodec/hevc_data.h b/libavcodec/hevc_data.h new file mode 100644 index 0000000000..74558f0a98 --- /dev/null +++ b/libavcodec/hevc_data.h @@ -0,0 +1,31 @@ +/* + * HEVC shared data tables + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef AVCODEC_HEVC_DATA_H +#define AVCODEC_HEVC_DATA_H + +#include <stdint.h> + +extern const uint8_t ff_hevc_diag_scan4x4_x[16]; +extern const uint8_t ff_hevc_diag_scan4x4_y[16]; +extern const uint8_t ff_hevc_diag_scan8x8_x[64]; +extern const uint8_t ff_hevc_diag_scan8x8_y[64]; + +#endif /* AVCODEC_HEVC_DATA_H */ |