Searched refs:frame_width (Results 1 - 6 of 6) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dvmdav.c202 int frame_width, frame_height; local
207 frame_width = AV_RL16(&s->buf[10]) - frame_x + 1;
210 if ((frame_width == s->avctx->width && frame_height == s->avctx->height) &&
221 if (frame_x || frame_y || (frame_width != s->avctx->width) ||
261 if (ofs + len > frame_width)
268 if (ofs + len + 1 > frame_width)
273 } while (ofs < frame_width);
274 if (ofs > frame_width) {
276 ofs, frame_width);
286 memcpy(dp, pb, frame_width);
[all...]
H A Dsvq1enc.c53 int frame_width; member in struct:SVQ1Context
98 if ((ff_svq1_frame_size_table[i].width == s->frame_width) &&
109 put_bits(&s->pb, 12, s->frame_width);
491 s->frame_width = avctx->width;
494 s->y_block_width = (s->frame_width + 15) / 16;
497 s->c_block_width = (s->frame_width / 4 + 15) / 16;
546 s->frame_width / (i?4:1), s->frame_height / (i?4:1),
H A Dlibtheoraenc.c92 t_info.frame_width = avc_context->width;
H A Dutils.c1070 int frame_width = 0, frame_height = 0; local
1074 frame_width = video_frame_size_abbrs[i].width;
1081 frame_width = strtol(p, &p, 10);
1086 if (frame_width <= 0 || frame_height <= 0)
1088 *width_ptr = frame_width;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/
H A Dffmpeg.c114 static int frame_width = 0; variable
2375 if ((frame_leftBand) >= frame_width){
2379 frame_width -= frame_leftBand;
2393 if ((frame_rightBand) >= frame_width){
2397 frame_width -= frame_rightBand;
2402 if (av_parse_video_frame_size(&frame_width, &frame_height, arg) < 0) {
2406 if ((frame_width % 2) != 0 || (frame_height % 2) != 0) {
2806 ap->width = frame_width + frame_padleft + frame_padright;
2883 frame_width = enc->width;
3021 st->sample_aspect_ratio = av_d2q(frame_aspect_ratio*frame_height/frame_width, 25
[all...]
H A Dffplay.c187 static int frame_width = 0; variable
1932 ap->width = frame_width;
2402 if (av_parse_video_frame_size(&frame_width, &frame_height, arg) < 0) {
2406 if ((frame_width % 2) != 0 || (frame_height % 2) != 0) {

Completed in 116 milliseconds