Searched refs:picture (Results 101 - 125 of 178) sorted by relevance

12345678

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dpamenc.c32 AVFrame * const p = (AVFrame*)&s->picture;
H A Dc93.c123 AVFrame *picture = data; local
239 *picture = *newpic;
H A Dcavs.h158 Picture picture; ///< currently decoded frame member in struct:__anon1890
298 h->picture.poc, h->mbx, h->mby);
H A Dlibschroedingerdec.c63 /** decoded picture */
211 AVPicture *picture = data; local
301 /* Fill picture with current buffer data from Schroedinger. */
302 avpicture_fill(picture, p_schro_params->dec_pic.data[0],
H A Dhuffyuv.c79 AVFrame picture; member in struct:HYuvContext
437 avctx->coded_frame= &s->picture;
534 avctx->coded_frame= &s->picture;
587 avctx->coded_frame= &s->picture;
941 offset[0] = s->picture.linesize[0]*y;
942 offset[1] = s->picture.linesize[1]*cy;
943 offset[2] = s->picture.linesize[2]*cy;
948 s->avctx->draw_horiz_band(s->avctx, &s->picture, offset, y, 3, h);
961 AVFrame * const p= &s->picture;
964 AVFrame *picture local
[all...]
H A Dmpegvideo.h130 int field_picture; ///< whether or not the picture was encoded in separate fields
139 struct MpegEncContext *owner2; ///< pointer to the MpegEncContext that allocated this picture
181 /* temp variables for picture complexity calculation */
205 int width, height;///< picture size. must be a multiple of 16
242 int mb_num; ///< number of MBs of a picture
245 Picture *picture; ///< main picture buffer member in struct:MpegEncContext
274 * copy of the previous picture structure.
275 * note, linesize & data, might not match the previous picture (for field pictures)
280 * copy of the next picture structur
[all...]
H A Dpthread.c585 AVFrame *picture, int *got_picture_ptr,
631 *picture = p->frame;
633 picture->pkt_dts = p->avpkt.dts;
634 picture->sample_aspect_ratio = p->avctx->sample_aspect_ratio;
635 picture->width = p->avctx->width;
636 picture->height = p->avctx->height;
637 picture->format = p->avctx->pix_fmt;
584 ff_thread_decode_frame(AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, AVPacket *avpkt) argument
H A Da64multienc.c217 avcodec_get_frame_defaults(&c->picture);
218 avctx->coded_frame = &c->picture;
247 AVFrame *const p = (AVFrame *) & c->picture;
H A Dpngenc.c42 AVFrame picture; member in struct:PNGEncContext
235 AVFrame * const p= &s->picture;
428 avcodec_get_frame_defaults(&s->picture);
429 avctx->coded_frame= &s->picture;
H A Dpnmenc.c32 AVFrame * const p = (AVFrame*)&s->picture;
H A Dtiffenc.c51 AVFrame picture; member in struct:TiffEncoderContext
53 int width; ///< picture width
54 int height; ///< picture height
188 AVFrame *p = &s->picture;
208 AVFrame *const p = (AVFrame *) & s->picture;
232 avctx->coded_frame= &s->picture;
H A Dcavs.c605 h->cy = h->picture.f.data[0] + h->mby * 16 * h->l_stride;
606 h->cu = h->picture.f.data[1] + h->mby * 8 * h->c_stride;
607 h->cv = h->picture.f.data[2] + h->mby * 8 * h->c_stride;
632 h->cy = h->picture.f.data[0];
633 h->cu = h->picture.f.data[1];
634 h->cv = h->picture.f.data[2];
635 h->l_stride = h->picture.f.linesize[0];
636 h->c_stride = h->picture.f.linesize[1];
H A Dcscd.c143 AVFrame *picture = data; local
215 *picture = c->pic;
H A Dlibdiracenc.c46 AVFrame picture; member in struct:DiracEncoderParams
161 avccontext->coded_frame = &p_dirac_params->picture;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A D4xm.c829 AVFrame *picture = data; local
916 if ((ret = ff_get_buffer(avctx, picture, 0)) < 0)
920 picture->pict_type = AV_PICTURE_TYPE_I;
926 picture->pict_type = AV_PICTURE_TYPE_I;
932 picture->pict_type = AV_PICTURE_TYPE_P;
945 picture->key_frame = picture->pict_type == AV_PICTURE_TYPE_I;
947 av_image_copy_plane(picture->data[0], picture->linesize[0],
H A Dutils.c526 AVPicture picture; local
541 av_image_fill_linesizes(picture.linesize, avctx->pix_fmt, w);
547 unaligned |= picture.linesize[i] % pool->stride_align[i];
550 tmpsize = av_image_fill_pointers(picture.data, avctx->pix_fmt, h,
551 NULL, picture.linesize);
555 for (i = 0; i < 3 && picture.data[i + 1]; i++)
556 size[i] = picture.data[i + 1] - picture.data[i];
557 size[i] = tmpsize - (picture.data[i] - picture
2254 avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, const AVPacket *avpkt) argument
[all...]
H A Dffv1dec.c464 ff_thread_report_progress(&f->picture, si, 0);
868 FFSWAP(ThreadFrame, f->picture, f->last_picture);
870 f->cur = p = f->picture.f;
899 if ((ret = ff_thread_get_buffer(avctx, &f->picture, AV_GET_BUFFER_FLAG_REF)) < 0)
976 ff_thread_report_progress(&f->picture, INT_MAX, 0);
983 if ((ret = av_frame_ref(data, f->picture.f)) < 0)
996 f->picture.f = NULL;
1007 f->picture.f = av_frame_alloc();
1058 fdst->picture = bak.picture;
[all...]
H A Dlibxvid.c675 const AVFrame *picture, int *got_packet)
707 xvid_enc_frame.input.plane[i] = picture->data[i];
708 xvid_enc_frame.input.stride[i] = picture->linesize[i];
716 picture->pict_type == AV_PICTURE_TYPE_I ? XVID_TYPE_IVOP :
717 picture->pict_type == AV_PICTURE_TYPE_P ? XVID_TYPE_PVOP :
718 picture->pict_type == AV_PICTURE_TYPE_B ? XVID_TYPE_BVOP :
735 if( x->qscale ) xvid_enc_frame.quant = picture->quality / FF_QP2LAMBDA;
674 xvid_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *picture, int *got_packet) argument
H A Dexr.c86 AVFrame *picture; member in struct:EXRContext
832 AVFrame *const p = s->picture;
1247 AVFrame *picture = data; local
1323 ptr = picture->data[0];
1328 ptr += picture->linesize[0];
1331 s->picture = picture;
1337 ptr += picture->linesize[0];
1340 picture->pict_type = AV_PICTURE_TYPE_I;
H A Dj2kenc.c63 const AVFrame *picture; member in struct:__anon3170
393 line = s->picture->data[compno]
394 + comp->coord[1][0] * s->picture->linesize[compno]
400 line += s->picture->linesize[compno];
404 line = s->picture->data[0] + tile->comp[0].coord[1][0] * s->picture->linesize[0]
415 line += s->picture->linesize[0];
930 s->picture = pict;
932 s->lambda = s->picture->quality * LAMBDA_SCALE;
H A Dffv1.h90 ThreadFrame picture, last_picture; member in struct:FFV1Context
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/FLAC/
H A Dformat.h768 /**< The kind of picture stored. */
773 * use picture data of MIME type \c image/jpeg or \c image/png. A
774 * MIME type of '-->' is also allowed, in which case the picture
798 /**< For indexed palettes (like GIF), picture's number of colors (the
803 /**< Length of binary picture data in bytes. */
806 /**< Binary picture data. */
850 FLAC__StreamMetadata_Picture picture; member in union:__anon3745::__anon3746
986 /** Check picture data to see if it conforms to the FLAC specification.
990 * \param picture A pointer to existing picture dat
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dformat.c495 FLAC_API FLAC__bool FLAC__format_picture_is_legal(const FLAC__StreamMetadata_Picture *picture, const char **violation) argument
500 for(p = picture->mime_type; *p; p++) {
507 for(b = picture->description; *b; ) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dbitmap.cpp321 info->u.picture = MAC_WXHMETAFILE(bmap->m_hPict) ;
344 info->u.picture = wxMacCreatePict( MAC_WXHBITMAP(bmap->m_hBitmap) , MAC_WXHBITMAP(bitmap.GetMask()->GetMaskBitmap() ) ) ;
348 info->u.picture = wxMacCreatePict( MAC_WXHBITMAP(bmap->m_hBitmap) , NULL ) ;
738 // Create picture
1073 PicHandle picture = NULL ; // This is the returned picture local
1088 picture = wxMacCreatePict( MAC_WXHBITMAP(M_BITMAPDATA->m_hBitmap) , MAC_WXHBITMAP(GetMask()->GetMaskBitmap() ) ) ;
1092 picture = wxMacCreatePict( MAC_WXHBITMAP(M_BITMAPDATA->m_hBitmap) , NULL ) ;
1094 if ( created && picture )
1097 return picture ;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/grabbag/
H A DMakefile.in214 picture.c \
233 am_libgrabbag_la_OBJECTS = cuesheet.lo file.lo picture.lo replaygain.lo \
241 @AMDEP_TRUE@ ./$(DEPDIR)/picture.Plo ./$(DEPDIR)/replaygain.Plo \
283 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/picture.Plo@am__quote@

Completed in 407 milliseconds

12345678