1/* ------------------------------------------------------------------
2 * Copyright (C) 1998-2009 PacketVideo
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13 * express or implied.
14 * See the License for the specific language governing permissions
15 * and limitations under the License.
16 * -------------------------------------------------------------------
17 */
18#ifndef _VLC_ENCODE_H_
19#define _VLC_ENCODE_H_
20
21#include "mp4def.h"
22#include "mp4enc_api.h"
23
24Int PutCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
25Int PutCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
26Int PutCBPY(Int cbpy, Char intra, BitstreamEncVideo *bitstream);
27Int PutMCBPC_Inter(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
28Int PutMCBPC_Intra(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
29Int PutMV(Int mvint, BitstreamEncVideo *bitstream);
30Int PutDCsize_chrom(Int size, BitstreamEncVideo *bitstream);
31Int PutDCsize_lum(Int size, BitstreamEncVideo *bitstream);
32Int PutDCsize_lum(Int size, BitstreamEncVideo *bitstream);
33Int PutCoeff_Inter_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
34Int PutCoeff_Intra_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
35Int PutRunCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
36Int PutRunCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
37Int PutLevelCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
38Int PutLevelCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
39
40Void MB_CodeCoeff(VideoEncData *video, BitstreamEncVideo *bs);
41Void BlockCodeCoeff(RunLevelBlock *RLB, BitstreamEncVideo *bs, Int j_start, UChar Mode, Int rvlc, Int shortVideoHeader);
42#endif /* _VLC_ENCODE_H_ */
43