Searched refs:picture (Results 126 - 150 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 Dlibschroedingerenc.c52 AVFrame picture; member in struct:SchroEncoderParams
164 avccontext->coded_frame = &p_schro_params->picture;
H A Dnuv.c135 AVFrame *picture = data; local
246 *picture = c->pic;
H A Dmjpegdec.c90 s->picture_ptr = &s->picture;
240 av_log(s->avctx, AV_LOG_DEBUG, "sof0: picture: %dx%d\n", width, height);
290 /* if different size, realloc/alloc picture */
385 /* totally blank picture as progressive JPEG will only add details to it */
850 // picture should be flipped upside-down for this codec
1466 AVFrame *picture = data; local
1468 s->got_picture = 0; // picture from previous image can not be reused
1574 *picture = *s->picture_ptr;
1578 picture->quality = FFMAX3(s->qscale[0],
1581 picture
[all...]
H A Dffv1.c170 AVFrame picture; member in struct:FFV1Context
899 avctx->coded_frame= &s->picture;
1063 AVFrame * const p= &f->picture;
1087 AVFrame * const p= &f->picture;
1211 if (avctx->codec->decode && s->picture.data[0])
1212 avctx->release_buffer(avctx, &s->picture);
1387 AVFrame * const p= &f->picture;
1648 AVFrame * const p= &f->picture;
1653 AVFrame *picture = data; local
1720 *picture
[all...]
H A Davcodec.h992 * pointer to the picture/channel planes.
1000 * Size, in bytes, of the data for each picture/channel plane.
1011 * pointer to the first allocated byte of the picture. Can be used in get_buffer/release_buffer.
1040 * picture number in bitstream order
1046 * picture number in display order
1067 * is this picture used as reference
1150 * When decoding, this signals how much the picture must be delayed.
1163 * The content of the picture is interlaced.
1402 * picture width / height.
1996 * the picture i
[all...]
H A Dsnowdec.c390 AVFrame *picture = data; local
535 *picture= s->current_picture;
537 *picture= s->mconly_picture;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dnuv.c157 AVFrame *picture = data; local
296 if ((result = av_frame_ref(picture, c->pic)) < 0)
H A Djpeg2000dec.c1217 AVFrame *picture)
1304 line = picture->data[plane] + y / s->cdy[compno] * picture->linesize[plane];
1330 line += picture->linesize[plane];
1348 linel = (uint16_t *)picture->data[plane] + y / s->cdy[compno] * (picture->linesize[plane] >> 1);
1375 linel += picture->linesize[plane] >> 1;
1629 AVFrame *picture = data; local
1668 /* get picture buffer */
1671 picture
1216 jpeg2000_decode_tile(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile, AVFrame *picture) argument
[all...]
H A Dffv1enc.c995 if (!f->picture.f->interlaced_frame)
998 put_symbol(c, state, 1 + !f->picture.f->top_field_first, 0);
999 put_symbol(c, state, f->picture.f->sample_aspect_ratio.num, 0);
1000 put_symbol(c, state, f->picture.f->sample_aspect_ratio.den, 0);
1103 const AVFrame *const p = f->picture.f;
1173 AVFrame *const p = f->picture.f;
H A Davcodec.h1386 * picture width / height.
1822 * of the picture.
1943 * Indicates number of picture subdivisions. Used for parallelized
2698 * the picture in the bitstream
3233 * Called at the beginning of each frame or field picture.
3263 * Called at the end of each frame or field picture.
3265 * The whole picture is parsed at this point and can now be sent
3286 * Instead of decoding to raw picture, MB parameters are
4028 * Decode the video frame of size avpkt->size from avpkt->data into picture.
4044 * @param[out] picture Th
[all...]
H A Dpthread_frame.c400 AVFrame *picture, int *got_picture_ptr,
448 av_frame_move_ref(picture, p->frame);
450 picture->pkt_dts = p->avpkt.dts;
399 ff_thread_decode_frame(AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, AVPacket *avpkt) argument
H A Dsnowdec.c413 AVFrame *picture = data; local
571 res = av_frame_ref(picture, s->current_picture);
573 res = av_frame_ref(picture, s->mconly_picture);
H A Dmjpegdec.c104 s->picture = av_frame_alloc();
105 if (!s->picture)
107 s->picture_ptr = s->picture;
279 av_log(s->avctx, AV_LOG_DEBUG, "sof0: picture: %dx%d\n", width, height);
290 "nb_components changing in interlaced picture\n");
338 /* if different size, realloc/alloc picture */
372 avpriv_request_sample(s->avctx, "progressively coded interlaced picture");
577 /* totally blank picture as progressive JPEG will only add details to it */
1443 av_assert0(s->picture_ptr == s->picture);
1464 av_assert0(s->picture_ptr == s->picture);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dmetadata_iterators.c285 FLAC_API FLAC__bool FLAC__metadata_get_picture(const char *filename, FLAC__StreamMetadata **picture, FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors) argument
292 FLAC__ASSERT(0 != picture);
294 *picture = 0;
306 FLAC__uint64 area = (FLAC__uint64)obj->data.picture.width * (FLAC__uint64)obj->data.picture.height;
309 (type == (FLAC__StreamMetadata_Picture_Type)(-1) || type == obj->data.picture.type) &&
310 (mime_type == 0 || !strcmp(mime_type, obj->data.picture.mime_type)) &&
311 (description == 0 || !strcmp((const char *)description, (const char *)obj->data.picture.description)) &&
312 obj->data.picture.width <= max_width &&
313 obj->data.picture
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/asus_oled/
H A Dasus_oled.c84 /* formula to be used while packing the picture */
337 first packet. I have no idea why, but when static picture
338 is sent just before rolling picture everything works fine. */
473 printk(ASUS_OLED_ERROR "Wrong picture mode: '%c'.\n",
593 printk(ASUS_OLED_ERROR "Wrong picture width specified.\n");
597 printk(ASUS_OLED_ERROR "Wrong picture height specified.\n");
601 printk(ASUS_OLED_ERROR "Wrong picture header.\n");
629 static DEVICE_ATTR(picture, S_IWUSR, NULL, class_set_picture);
694 &ASUS_OLED_DEVICE_ATTR(picture));
734 device_remove_file(&interface->dev, &ASUS_OLED_DEVICE_ATTR(picture));
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavcodec/
H A Davcodec.h594 * pointer to the picture planes.\
602 * pointer to the first allocated byte of the picture. Can be used in get_buffer/release_buffer.\
631 * picture number in bitstream order\
637 * picture number in display order\
659 * is this picture used as reference\
742 * When decoding, this signals how much the picture must be delayed.\
755 * The content of the picture is interlaced.\
928 * picture width / height.
1000 int real_pict_num; ///< Returns the real picture number of previous encoded frame.
1485 * the picture i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dframetype.c516 {"APIC", FRAME(APIC), PRESERVE, "Attached picture"},
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dframetype.c513 {"APIC", FRAME(APIC), PRESERVE, "Attached picture"},
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/FLAC/
H A Dmetadata.h203 * the constraints will be returned, or \a *picture will be set to
207 * \param picture The address where the returned pointer will be
208 * stored. The \a picture object must be deleted by
210 * \param type The desired picture type. Use \c -1 to mean
228 * \code picture != NULL \endcode
231 * and \a *picture will be set to the address of the metadata
234 * block, and \a *picture will be set to \c NULL.
236 FLAC_API FLAC__bool FLAC__metadata_get_picture(const char *filename, FLAC__StreamMetadata **picture, FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors);
2131 /** Sets the picture data of a PICTURE block.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_grabbag/picture/
H A DMakefile.in17 # test_picture - Simple tester for picture routines in grabbag
238 subdir = src/test_grabbag/picture
274 $(AUTOMAKE) --gnu src/test_grabbag/picture/Makefile
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/
H A Dffmpeg.c1000 static void pre_process_video_frame(InputStream *ist, AVPicture *picture, void **bufp) argument
1013 /* create temporary picture */
1022 if(avpicture_deinterlace(picture2, picture,
1028 picture2 = picture;
1031 picture2 = picture;
1034 if (picture != picture2)
1035 *picture = *picture2;
1222 /* better than nothing: use input picture interlaced
1461 AVFrame picture; local
1542 /* XXX: allocate picture correctl
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dnotebmac.cpp478 OSErr err = SetIconFamilyData( iconFamily, 'PICT' , (Handle) info.u.picture ) ;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtwinsizes.tex19 picture? There is a special virtual method in the C++ window classes
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/FLAC++/
H A Dmetadata.h956 FLACPP_API bool get_picture(const char *filename, Picture *&picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors); ///< See FLAC__metadata_get_picture().
957 FLACPP_API bool get_picture(const char *filename, Picture &picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors); ///< See FLAC__metadata_get_picture().
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/share/grabbag/
H A DMakefile.in210 picture.h \

Completed in 427 milliseconds

12345678