Searched refs:pic (Results 26 - 50 of 156) sorted by relevance

1234567

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dlcldec.c56 AVFrame pic; member in struct:LclDecContext
182 if(c->pic.data[0])
183 avctx->release_buffer(avctx, &c->pic);
185 c->pic.reference = 0;
186 c->pic.buffer_hints = FF_BUFFER_HINTS_VALID;
187 if(avctx->get_buffer(avctx, &c->pic) < 0){
192 outptr = c->pic.data[0]; // Output image pointer
405 pixel_ptr = row * c->pic.linesize[0];
416 pixel_ptr = row * c->pic.linesize[0];
436 pixel_ptr = row * c->pic
[all...]
H A Dzmbv.c55 AVFrame pic; member in struct:ZmbvContext
403 if(c->pic.data[0])
404 avctx->release_buffer(avctx, &c->pic);
406 c->pic.reference = 1;
407 c->pic.buffer_hints = FF_BUFFER_HINTS_VALID;
408 if(avctx->get_buffer(avctx, &c->pic) < 0){
413 outptr = c->pic.data[0]; // Output image pointer
502 c->pic.key_frame = 1;
503 c->pic.pict_type = FF_I_TYPE;
506 c->pic
[all...]
H A Dsmacker.c48 AVFrame pic; member in struct:SmackVContext
360 if(smk->pic.data[0])
361 avctx->release_buffer(avctx, &smk->pic);
363 smk->pic.reference = 1;
364 smk->pic.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
365 if(avctx->reget_buffer(avctx, &smk->pic) < 0){
371 pal = (uint32_t*)smk->pic.data[1];
372 smk->pic.palette_has_changed = buf[0] & 1;
373 smk->pic.key_frame = !!(buf[0] & 2);
374 if(smk->pic
[all...]
H A Dwnv1.c33 AVFrame pic; member in struct:WNV1Context
64 AVFrame * const p= (AVFrame*)&l->pic;
122 *(AVFrame*)data = l->pic;
H A Dlclenc.c58 AVFrame pic; member in struct:LclEncContext
86 AVFrame * const p = &c->pic;
157 avctx->coded_frame= &c->pic;
H A Dmpegvideo.c171 int alloc_picture(MpegEncContext *s, Picture *pic, int shared){ argument
180 assert(pic->data[0]);
181 assert(pic->type == 0 || pic->type == FF_BUFFER_TYPE_SHARED);
182 pic->type= FF_BUFFER_TYPE_SHARED;
184 assert(!pic->data[0]);
186 r= s->avctx->get_buffer(s->avctx, (AVFrame*)pic);
188 if(r<0 || !pic->age || !pic->type || !pic
259 free_picture(MpegEncContext *s, Picture *pic) argument
834 AVFrame *pic; local
[all...]
H A Dlibx264.c32 x264_picture_t pic; member in struct:X264Context
123 x4->pic.img.i_csp = X264_CSP_I420;
124 x4->pic.img.i_plane = 3;
128 x4->pic.img.plane[i] = frame->data[i];
129 x4->pic.img.i_stride[i] = frame->linesize[i];
132 x4->pic.i_pts = frame->pts;
133 x4->pic.i_type = X264_TYPE_AUTO;
136 if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
H A Deatgv.c230 static void cond_release_buffer(AVFrame *pic) argument
232 if (pic->data[0]) {
233 av_freep(&pic->data[0]);
234 av_free(pic->data[1]);
H A Dtruemotion2.c42 AVFrame pic; member in struct:TM2Context
424 static inline void tm2_hi_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by) argument
445 static inline void tm2_med_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by) argument
467 static inline void tm2_low_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by) argument
508 static inline void tm2_null_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by) argument
554 static inline void tm2_still_block(TM2Context *ctx, AVFrame *pic, int bx, int by) argument
589 static inline void tm2_update_block(TM2Context *ctx, AVFrame *pic, int bx, int by) argument
627 static inline void tm2_motion_block(TM2Context *ctx, AVFrame *pic, int bx, int by) argument
769 AVFrame * const p= (AVFrame*)&l->pic;
810 *(AVFrame*)data = l->pic;
[all...]
H A Dratecontrol.c549 Picture * const pic= &s->current_picture; local
555 float temp_cplx= sqrt(pic->mc_mb_var[mb_xy]); //FIXME merge in pow()
556 float spat_cplx= sqrt(pic->mb_var[mb_xy]);
557 const int lumi= pic->mb_mean[mb_xy];
678 Picture * const pic= &s->current_picture; local
725 var= pict_type == FF_I_TYPE ? pic->mb_var_sum : pic->mc_mb_var_sum;
737 rce->mc_mb_var_sum= pic->mc_mb_var_sum;
738 rce->mb_var_sum = pic-> mb_var_sum;
797 br_compensation, short_term_q, s->frame_bits, pic
[all...]
H A Dloco.c37 AVFrame pic; member in struct:LOCOContext
164 AVFrame * const p= (AVFrame*)&l->pic;
224 *(AVFrame*)data = l->pic;
H A Dzmbvenc.c45 AVFrame pic; member in struct:ZmbvEncContext
117 AVFrame * const p = &c->pic;
254 c->pic.data[0] = NULL;
304 avctx->coded_frame = (AVFrame*)&c->pic;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/
H A Dsaa711x.c415 struct video_picture *pic = arg; local
417 if (decoder->bright != pic->brightness) {
419 decoder->bright = pic->brightness;
422 if (decoder->contrast != pic->contrast) {
424 decoder->contrast = pic->contrast;
428 if (decoder->sat != pic->colour) {
430 decoder->sat = pic->colour;
433 if (decoder->hue != pic->hue) {
435 decoder->hue = pic->hue;
H A Dvpx3220.c519 struct video_picture *pic = arg; local
521 if (decoder->bright != pic->brightness) {
523 decoder->bright = pic->brightness;
527 if (decoder->contrast != pic->contrast) {
530 decoder->contrast = pic->contrast;
534 if (decoder->sat != pic->colour) {
536 decoder->sat = pic->colour;
540 if (decoder->hue != pic->hue) {
542 decoder->hue = pic->hue;
H A Dsaa7110.c402 struct video_picture *pic = arg; local
404 if (decoder->bright != pic->brightness) {
406 decoder->bright = pic->brightness;
409 if (decoder->contrast != pic->contrast) {
411 decoder->contrast = pic->contrast;
415 if (decoder->sat != pic->colour) {
417 decoder->sat = pic->colour;
420 if (decoder->hue != pic->hue) {
422 decoder->hue = pic->hue;
H A Dsaa7111.c447 struct video_picture *pic = arg; local
450 saa7111_write_if_changed(client, 0x0a, pic->brightness >> 8);
452 saa7111_write(client, 0x0b, pic->contrast >> 9);
454 saa7111_write(client, 0x0c, pic->colour >> 9);
456 saa7111_write(client, 0x0d, (pic->hue - 32768) >> 8);
H A Dsaa7114.c764 struct video_picture *pic = arg; local
769 I2C_NAME(client), pic->brightness, pic->contrast,
770 pic->colour, pic->hue);
772 if (decoder->bright != pic->brightness) {
774 decoder->bright = pic->brightness;
777 if (decoder->contrast != pic->contrast) {
779 decoder->contrast = pic->contrast;
783 if (decoder->sat != pic
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/perlasm/
H A Dx86asm.pl50 $pic=0;
51 for (@ARGV) { $pic=1 if (/\-[fK]PIC/i); }
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/perlasm/
H A Dx86asm.pl53 $pic=0;
54 for (@ARGV) { $pic=1 if (/\-[fK]PIC/i); }
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/
H A DMakefile14 CFLAGS += -pipe -fno-builtin -mno-pic
15 AFLAGS += -mrelax -mno-pic
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/compressed/
H A DMakefile51 CFLAGS += -G 0 -mno-abicalls -fno-pic -pipe -msoft-float
52 ASFLAGS += -G 0 -mno-abicalls -fno-pic -pipe
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/lasat/image/
H A DMakefile27 $(CC) -fno-pic $(HEAD_DEFINES) -I$(TOPDIR)/include -c -o $@ $<
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/chrp/
H A Dsetup.c346 * Finds the open-pic node and sets up the mpic driver.
358 np = of_find_node_by_type(NULL, "open-pic");
363 opprop = of_get_property(root, "platform-open-pic", &oplen);
439 struct device_node *np, *pic = NULL; local
446 pic = np;
453 if (pic == NULL && chrp_mpic != NULL) {
479 i8259_init(pic, chrp_int_ack);
485 cascade_irq = irq_of_parse_and_map(pic, 0);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavfilter/
H A Davfilter.c45 ret->pic->refcount ++;
51 if(!(--ref->pic->refcount))
52 ref->pic->free(ref->pic);
H A Davfilter.h73 void (*free)(struct AVFilterPic *pic);
86 AVFilterPic *pic; ///< the picture that this is a reference to member in struct:AVFilterPicRef

Completed in 131 milliseconds

1234567