mirror of https://github.com/FFmpeg/FFmpeg.git
This will be useful in the following commits.pull/62/merge
parent
645c6ff423
commit
150c896a9e
7 changed files with 36 additions and 6 deletions
@ -0,0 +1,31 @@ |
||||
/*
|
||||
* HEVC shared data tables |
||||
* |
||||
* This file is part of Libav. |
||||
* |
||||
* Libav 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. |
||||
* |
||||
* Libav 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 Libav; 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 */ |
Loading…
Reference in new issue