Searched refs:cabac (Results 1 - 19 of 19) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dh264_cabac.c2 * H.26L/H.264/AVC/JVT/14496-10/... cabac decoding
24 * H.264 / AVC / MPEG4 part10 cabac decoding.
35 #include "cabac.h"
1291 return get_cabac_noinline( &h->cabac, &(h->cabac_state+70)[ctx] );
1304 if( get_cabac_noinline( &h->cabac, &state[ctx] ) == 0 )
1308 if( get_cabac_noinline( &h->cabac, state ) == 0 )
1312 if( get_cabac_terminate( &h->cabac ) )
1316 mb_type += 12 * get_cabac_noinline( &h->cabac, &state[1] ); /* cbp_luma != 0 */
1317 if( get_cabac_noinline( &h->cabac, &state[2] ) ) /* cbp_chroma */
1318 mb_type += 4 + 4 * get_cabac_noinline( &h->cabac,
[all...]
H A Dh264.h32 #include "cabac.h"
94 #define CABAC(h) (h)->pps.cabac
238 int cabac; ///< entropy_coding_mode_flag member in struct:PPS
506 CABACContext cabac; member in struct:H264Context
H A Dh264_slice.c32 #include "cabac.h"
570 memcpy(&h->cabac, &h1->cabac,
571 sizeof(H264Context) - offsetof(H264Context, cabac));
572 av_assert0((void*)&h->cabac == &h->mb_padding + 1);
1812 if (h->slice_type_nos != AV_PICTURE_TYPE_I && h->pps.cabac) {
2378 if (h->pps.cabac) {
2382 /* init cabac */
2383 ff_init_cabac_decoder(&h->cabac,
2408 eos = get_cabac_terminate(&h->cabac);
[all...]
H A Ddxva2_h264.c148 pp->entropy_coding_mode_flag = h->pps.cabac;
282 slice->cabac_init_idc = h->pps.cabac ? h->cabac_init_idc : 0;
H A Dvdpau_h264.c151 info->entropy_coding_mode_flag = h->pps.cabac;
H A Dvaapi_h264.c268 pic_param->pic_fields.bits.entropy_coding_mode_flag = h->pps.cabac;
H A Dh264_ps.c640 pps->cabac = get_bits1(&h->gb);
722 pps->cabac ? "CABAC" : "CAVLC",
H A Dvdpau.c257 render->info.h264.entropy_coding_mode_flag = h->pps.cabac;
H A DMakefile42 OBJS-$(CONFIG_CABAC) += cabac.o
855 TESTPROGS = cabac \
H A Dh264_loopfilter.c754 ((!h->pps.cabac && IS_8x8DCT(mbn_type)) ?
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dh264_cabac.c2 * H.26L/H.264/AVC/JVT/14496-10/... cabac decoding
24 * H.264 / AVC / MPEG4 part10 cabac decoding.
31 #include "cabac.h"
1292 return get_cabac_noinline( &h->cabac, &(h->cabac_state+70)[ctx] );
1305 if( get_cabac_noinline( &h->cabac, &state[ctx] ) == 0 )
1309 if( get_cabac_noinline( &h->cabac, state ) == 0 )
1313 if( get_cabac_terminate( &h->cabac ) )
1317 mb_type += 12 * get_cabac_noinline( &h->cabac, &state[1] ); /* cbp_luma != 0 */
1318 if( get_cabac_noinline( &h->cabac, &state[2] ) ) /* cbp_chroma */
1319 mb_type += 4 + 4 * get_cabac_noinline( &h->cabac,
[all...]
H A Dh264.h33 #include "cabac.h"
85 #define CABAC h->pps.cabac
214 int cabac; ///< entropy_coding_mode_flag member in struct:PPS
400 CABACContext cabac; member in struct:H264Context
H A Ddxva2_h264.c145 pp->entropy_coding_mode_flag = h->pps.cabac;
266 slice->cabac_init_idc = h->pps.cabac ? h->cabac_init_idc : 0;
H A DMakefile180 cabac.o h264_sei.o h264_ps.o \
366 h264_cavlc.o h264_cabac.o cabac.o \
616 cabac.o \
690 TESTPROGS = cabac dct fft fft-fixed h264 iirfilter rangecoder
H A Dvaapi_h264.c268 pic_param->pic_fields.bits.entropy_coding_mode_flag = h->pps.cabac;
H A Dh264_ps.c508 pps->cabac= get_bits1(&s->gb);
587 pps->cabac ? "CABAC" : "CAVLC",
H A Dvdpau.c181 render->info.h264.entropy_coding_mode_flag = h->pps.cabac;
H A Dh264.c30 #include "cabac.h"
3194 if( h->slice_type_nos != AV_PICTURE_TYPE_I && h->pps.cabac ){
3675 if( h->pps.cabac ) {
3679 /* init cabac */
3680 ff_init_cabac_states( &h->cabac);
3681 ff_init_cabac_decoder( &h->cabac,
3703 eos = get_cabac_terminate( &h->cabac );
3705 if((s->workaround_bugs & FF_BUG_TRUNCATED) && h->cabac.bytestream > h->cabac.bytestream_end + 2){
3710 if( ret < 0 || h->cabac
[all...]
H A Dh264_loopfilter.c760 ((!h->pps.cabac && IS_8x8DCT(mbn_type)) ?

Completed in 135 milliseconds