digiKam
encoder-intrapred.h
Go to the documentation of this file.
1 /*
2  * H.265 video codec.
3  * Copyright (c) 2013-2014 struktur AG, Dirk Farin <farin@struktur.de>
4  *
5  * This file is part of libde265.
6  *
7  * libde265 is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Lesser General Public License as
9  * published by the Free Software Foundation, either version 3 of
10  * the License, or (at your option) any later version.
11  *
12  * libde265 is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with libde265. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef DE265_ENCODER_INTRAPRED_H
22 #define DE265_ENCODER_INTRAPRED_H
23 
24 #include "libde265/decctx.h"
25 
26 
27 void fillIntraPredModeCandidates(enum IntraPredMode candModeList[3],
28  int x,int y,
29  bool availableA, // left
30  bool availableB, // top
31  const class CTBTreeMatrix& ctbs,
32  const seq_parameter_set* sps);
33 
35  const class enc_tb* tb,
36  const class CTBTreeMatrix& ctbs,
37  const class seq_parameter_set& sps,
38  int cIdx);
39 
40 #endif
Definition: encoder-types.h:341
Definition: encoder-types.h:135
Definition: sps.h:86
void fillIntraPredModeCandidates(enum IntraPredMode candModeList[3], int x, int y, bool availableA, bool availableB, const class CTBTreeMatrix &ctbs, const seq_parameter_set *sps)
void decode_intra_prediction_from_tree(const de265_image *img, const class enc_tb *tb, const class CTBTreeMatrix &ctbs, const class seq_parameter_set &sps, int cIdx)
IntraPredMode
Definition: slice.h:95
Definition: image.h:222