Searched refs:picture (Results 1 - 25 of 178) sorted by relevance

12345678

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_grabbag/
H A DMakefile.am18 SUBDIRS = cuesheet picture
H A DMakefile.lite18 .PHONY: cuesheet picture
19 all: cuesheet picture
35 picture:
40 -(cd picture ; $(MAKE) -f Makefile.lite clean)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/grabbag/
H A Dpicture.c41 static FLAC__bool local__parse_type_(const char *s, size_t len, FLAC__StreamMetadata_Picture *picture) argument
46 picture->type = FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER;
59 picture->type = val;
66 static FLAC__bool local__parse_resolution_(const char *s, size_t len, FLAC__StreamMetadata_Picture *picture) argument
72 picture->width = picture->height = picture->depth = picture->colors = 0;
80 picture->width = val;
82 picture
127 local__extract_resolution_color_info_(FLAC__StreamMetadata_Picture *picture) argument
[all...]
H A DMakefile.lite13 picture.c \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dbmp.h28 AVFrame picture; member in struct:BMPContext
H A Ddxva2_internal.h39 void *ff_dxva2_get_surface(const Picture *picture);
42 const Picture *picture);
H A Dimgconvert.h32 int ff_fill_linesize(AVPicture *picture, enum PixelFormat pix_fmt, int width);
35 int ff_fill_pointer(AVPicture *picture, uint8_t *ptr, enum PixelFormat pix_fmt, int height);
H A Dcljr.c32 AVFrame picture; member in struct:CLJRContext
39 avctx->coded_frame = &a->picture;
53 AVFrame *picture = data; local
54 AVFrame * const p = &a->picture;
82 uint8_t *luma = &a->picture.data[0][y * a->picture.linesize[0]];
83 uint8_t *cb = &a->picture.data[1][y * a->picture.linesize[1]];
84 uint8_t *cr = &a->picture.data[2][y * a->picture
[all...]
H A Dapi-example.c218 AVFrame *picture; local
231 picture= avcodec_alloc_frame();
262 picture->data[0] = picture_buf;
263 picture->data[1] = picture->data[0] + size;
264 picture->data[2] = picture->data[1] + size / 4;
265 picture->linesize[0] = c->width;
266 picture->linesize[1] = c->width / 2;
267 picture
342 AVFrame *picture; local
[all...]
H A Dlibvpxdec.c64 AVFrame *picture = data; local
94 picture->data[0] = img->planes[0];
95 picture->data[1] = img->planes[1];
96 picture->data[2] = img->planes[2];
97 picture->data[3] = NULL;
98 picture->linesize[0] = img->stride[0];
99 picture->linesize[1] = img->stride[1];
100 picture->linesize[2] = img->stride[2];
101 picture->linesize[3] = 0;
H A Dptx.c27 AVFrame picture; member in struct:PTXContext
33 avcodec_get_frame_defaults(&s->picture);
34 avctx->coded_frame= &s->picture;
44 AVFrame *picture = data; local
45 AVFrame * const p = &s->picture;
99 *picture = s->picture;
113 if(s->picture.data[0])
114 avctx->release_buffer(avctx, &s->picture);
H A Dpgssubdec.c61 PGSSubPicture picture; member in struct:PGSSubContext
75 av_freep(&ctx->picture.rle);
76 ctx->picture.rle_buffer_size = 0;
148 * Parse the picture segment packet.
150 * The picture segment contains details on the sequence id,
178 if (buf_size > ctx->picture.rle_remaining_len)
181 memcpy(ctx->picture.rle + ctx->picture.rle_data_len, buf, buf_size);
182 ctx->picture.rle_data_len += buf_size;
183 ctx->picture
[all...]
H A Dindeo2.c34 AVFrame picture; member in struct:Ir2Context
145 AVFrame *picture = data; local
146 AVFrame * const p= (AVFrame*)&s->picture;
178 s->picture.data[0], s->picture.linesize[0], ir2_luma_table);
181 s->picture.data[2], s->picture.linesize[2], ir2_luma_table);
183 s->picture.data[1], s->picture.linesize[1], ir2_luma_table);
186 s->picture
[all...]
H A Da64enc.h38 AVFrame picture; member in struct:A64Context
H A Dpnm.h31 AVFrame picture; member in struct:PNMContext
H A Davs.c27 AVFrame picture; member in struct:__anon1879
53 AVFrame *picture = data; local
54 AVFrame *const p = (AVFrame *) & avs->picture;
70 out = avs->picture.data[0];
71 stride = avs->picture.linesize[0];
81 uint32_t *pal = (uint32_t *) avs->picture.data[1];
152 *picture = *(AVFrame *) & avs->picture;
168 if (s->picture.data[0])
169 avctx->release_buffer(avctx, &s->picture);
[all...]
H A Dvcr1.c39 AVFrame picture; member in struct:VCR1Context
51 AVFrame *picture = data; local
52 AVFrame * const p= (AVFrame*)&a->picture;
74 uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ];
77 uint8_t *cb= &a->picture.data[1][ (y>>2)*a->picture.linesize[1] ];
78 uint8_t *cr= &a->picture.data[2][ (y>>2)*a->picture.linesize[2] ];
114 *picture
[all...]
H A Ddnxhddec.c36 AVFrame picture; member in struct:DNXHDContext
65 avctx->coded_frame = &ctx->picture;
66 ctx->picture.type = AV_PICTURE_TYPE_I;
67 ctx->picture.key_frame = 1;
116 ctx->picture.interlaced_frame = 1;
117 ctx->picture.top_field_first = first_field ^ ctx->cur_field;
160 if ((ctx->height+15)>>4 == ctx->mb_height && ctx->picture.interlaced_frame)
164 (ctx->mb_height<<ctx->picture.interlaced_frame) > (ctx->height+15)>>4) {
274 int dct_linesize_luma = ctx->picture.linesize[0];
275 int dct_linesize_chroma = ctx->picture
345 AVFrame *picture = data; local
[all...]
H A Dmdec.c39 AVFrame picture; member in struct:MDECContext
138 int linesize= a->picture.linesize[0];
140 uint8_t *dest_y = a->picture.data[0] + (mb_y * 16* linesize ) + mb_x * 16;
141 uint8_t *dest_cb = a->picture.data[1] + (mb_y * 8 * a->picture.linesize[1]) + mb_x * 8;
142 uint8_t *dest_cr = a->picture.data[2] + (mb_y * 8 * a->picture.linesize[2]) + mb_x * 8;
150 a->dsp.idct_put(dest_cb, a->picture.linesize[1], block[4]);
151 a->dsp.idct_put(dest_cr, a->picture.linesize[2], block[5]);
162 AVFrame *picture local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Davpicture.c34 int avpicture_fill(AVPicture *picture, const uint8_t *ptr, argument
37 return av_image_fill_arrays(picture->data, picture->linesize,
54 int avpicture_alloc(AVPicture *picture, argument
57 int ret = av_image_alloc(picture->data, picture->linesize,
60 memset(picture, 0, sizeof(AVPicture));
67 void avpicture_free(AVPicture *picture) argument
69 av_free(picture->data[0]);
H A Dsmvjpegdec.c36 AVFrame *picture[2]; /* pictures array */ member in struct:SMVJpegDecodeContext
87 s->picture[0] = av_frame_alloc();
88 if (!s->picture[0])
91 s->picture[1] = av_frame_alloc();
92 if (!s->picture[1])
95 s->jpg.picture_ptr = s->picture[0];
131 AVFrame* mjpeg_data = s->picture[0];
163 s->picture[1]->extended_data = NULL;
164 s->picture[1]->width = avctx->width;
165 s->picture[
[all...]
H A Dlibopenjpegdec.c173 static inline void libopenjpeg_copy_to_packed8(AVFrame *picture, opj_image_t *image) { argument
176 for (y = 0; y < picture->height; y++) {
177 index = y * picture->width;
178 img_ptr = picture->data[0] + y * picture->linesize[0];
179 for (x = 0; x < picture->width; x++, index++)
185 static inline void libopenjpeg_copy_to_packed16(AVFrame *picture, opj_image_t *image) { argument
190 adjust[x] = FFMAX(FFMIN(av_pix_fmt_desc_get(picture->format)->comp[x].depth_minus1 + 1 - image->comps[x].prec, 8), 0);
192 for (y = 0; y < picture->height; y++) {
193 index = y * picture
202 libopenjpeg_copyto8(AVFrame *picture, opj_image_t *image) argument
220 libopenjpeg_copyto16(AVFrame *picture, opj_image_t *image) argument
258 AVFrame *picture = data; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/metaflac/
H A Doperations_shorthand_picture.c32 static FLAC__bool import_pic_from(const char *filename, FLAC__StreamMetadata **picture, const char *specification, FLAC__bool *needs_write);
33 static FLAC__bool export_pic_to(const char *filename, const FLAC__StreamMetadata *picture, const char *pic_filename);
38 FLAC__StreamMetadata *picture = 0; local
48 ok = import_pic_from(filename, &picture, operation->argument.specification.value, needs_write);
53 if(!FLAC__metadata_iterator_insert_block_after(iterator, picture)) {
55 FLAC__metadata_object_delete(picture);
66 if(block->data.picture.type == FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON_STANDARD) {
73 else if(block->data.picture.type == FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON) {
92 picture = block;
94 } while(FLAC__metadata_iterator_next(iterator) && 0 == picture);
120 import_pic_from(const char *filename, FLAC__StreamMetadata **picture, const char *specification, FLAC__bool *needs_write) argument
145 export_pic_to(const char *filename, const FLAC__StreamMetadata *picture, const char *pic_filename) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/share/grabbag/
H A DMakefile.am8 picture.h \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_grabbag/picture/
H A Dmain.c1 /* test_picture - Simple tester for picture routines in grabbag
90 obj->data.picture.type,
91 obj->data.picture.type < FLAC__STREAM_METADATA_PICTURE_TYPE_UNDEFINED?
92 FLAC__StreamMetadata_Picture_TypeString[obj->data.picture.type] : "UNDEFINED",
93 obj->data.picture.mime_type,
94 obj->data.picture.description,
95 obj->data.picture.width,
96 obj->data.picture.height,
97 obj->data.picture.depth,
98 obj->data.picture
[all...]

Completed in 101 milliseconds

12345678