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

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavcodec/
H A Dvmdav.c201 int frame_width, frame_height; local
206 frame_width = AV_RL16(&s->buf[10]) - frame_x + 1;
209 if ((frame_width == s->avctx->width && frame_height == s->avctx->height) &&
220 if (frame_x || frame_y || (frame_width != s->avctx->width) ||
260 if (ofs + len > frame_width)
267 if (ofs + len + 1 > frame_width)
272 } while (ofs < frame_width);
273 if (ofs > frame_width) {
275 ofs, frame_width);
285 memcpy(dp, pb, frame_width);
[all...]
H A Dsvq1enc.c55 int frame_width; member in struct:SVQ1Context
98 i= ff_match_2uint16(ff_svq1_frame_size_table, FF_ARRAY_ELEMS(ff_svq1_frame_size_table), s->frame_width, s->frame_height);
103 put_bits(&s->pb, 12, s->frame_width);
482 s->frame_width = avctx->width;
485 s->y_block_width = (s->frame_width + 15) / 16;
488 s->c_block_width = (s->frame_width / 4 + 15) / 16;
538 s->frame_width / (i?4:1), s->frame_height / (i?4:1),
H A Dutils.c1169 int frame_width = 0, frame_height = 0; local
1173 frame_width = video_frame_size_abbrs[i].width;
1180 frame_width = strtol(p, &p, 10);
1185 if (frame_width <= 0 || frame_height <= 0)
1187 *width_ptr = frame_width;
H A Dlibtheoraenc.c163 t_info.frame_width = FFALIGN(avc_context->width, 16);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavcodec/
H A Dvmdav.c201 int frame_width, frame_height; local
206 frame_width = AV_RL16(&s->buf[10]) - frame_x + 1;
209 if ((frame_width == s->avctx->width && frame_height == s->avctx->height) &&
220 if (frame_x || frame_y || (frame_width != s->avctx->width) ||
260 if (ofs + len > frame_width)
267 if (ofs + len + 1 > frame_width)
272 } while (ofs < frame_width);
273 if (ofs > frame_width) {
275 ofs, frame_width);
285 memcpy(dp, pb, frame_width);
[all...]
H A Dsvq1enc.c55 int frame_width; member in struct:SVQ1Context
98 i= ff_match_2uint16(ff_svq1_frame_size_table, FF_ARRAY_ELEMS(ff_svq1_frame_size_table), s->frame_width, s->frame_height);
103 put_bits(&s->pb, 12, s->frame_width);
482 s->frame_width = avctx->width;
485 s->y_block_width = (s->frame_width + 15) / 16;
488 s->c_block_width = (s->frame_width / 4 + 15) / 16;
538 s->frame_width / (i?4:1), s->frame_height / (i?4:1),
H A Dutils.c1169 int frame_width = 0, frame_height = 0; local
1173 frame_width = video_frame_size_abbrs[i].width;
1180 frame_width = strtol(p, &p, 10);
1185 if (frame_width <= 0 || frame_height <= 0)
1187 *width_ptr = frame_width;
H A Dlibtheoraenc.c163 t_info.frame_width = FFALIGN(avc_context->width, 16);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/libavcodec/
H A Dvmdav.c201 int frame_width, frame_height; local
206 frame_width = AV_RL16(&s->buf[10]) - frame_x + 1;
209 if ((frame_width == s->avctx->width && frame_height == s->avctx->height) &&
220 if (frame_x || frame_y || (frame_width != s->avctx->width) ||
260 if (ofs + len > frame_width)
267 if (ofs + len + 1 > frame_width)
272 } while (ofs < frame_width);
273 if (ofs > frame_width) {
275 ofs, frame_width);
285 memcpy(dp, pb, frame_width);
[all...]
H A Dsvq1enc.c55 int frame_width; member in struct:SVQ1Context
98 i= ff_match_2uint16(ff_svq1_frame_size_table, FF_ARRAY_ELEMS(ff_svq1_frame_size_table), s->frame_width, s->frame_height);
103 put_bits(&s->pb, 12, s->frame_width);
482 s->frame_width = avctx->width;
485 s->y_block_width = (s->frame_width + 15) / 16;
488 s->c_block_width = (s->frame_width / 4 + 15) / 16;
538 s->frame_width / (i?4:1), s->frame_height / (i?4:1),
H A Dutils.c1169 int frame_width = 0, frame_height = 0; local
1173 frame_width = video_frame_size_abbrs[i].width;
1180 frame_width = strtol(p, &p, 10);
1185 if (frame_width <= 0 || frame_height <= 0)
1187 *width_ptr = frame_width;
H A Dlibtheoraenc.c163 t_info.frame_width = FFALIGN(avc_context->width, 16);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/
H A Dffmpeg.c117 static int frame_width = 0; variable
2588 if ((frame_leftBand) >= frame_width){
2592 frame_width -= frame_leftBand;
2602 if ((frame_rightBand) >= frame_width){
2606 frame_width -= frame_rightBand;
2611 if (av_parse_video_frame_size(&frame_width, &frame_height, arg) < 0) {
2984 ap->width = frame_width + frame_padleft + frame_padright;
3083 frame_width = enc->width;
3095 frame_width >>= enc->lowres;
3222 st->sample_aspect_ratio = av_d2q(frame_aspect_ratio*frame_height/frame_width, 25
[all...]
H A Dffplay.c232 static int frame_width = 0; variable
2382 ap->width = frame_width;
2927 if (av_parse_video_frame_size(&frame_width, &frame_height, arg) < 0) {
2931 if ((frame_width % 2) != 0 || (frame_height % 2) != 0) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/
H A Dffmpeg.c117 static int frame_width = 0; variable
2588 if ((frame_leftBand) >= frame_width){
2592 frame_width -= frame_leftBand;
2602 if ((frame_rightBand) >= frame_width){
2606 frame_width -= frame_rightBand;
2611 if (av_parse_video_frame_size(&frame_width, &frame_height, arg) < 0) {
2984 ap->width = frame_width + frame_padleft + frame_padright;
3083 frame_width = enc->width;
3095 frame_width >>= enc->lowres;
3222 st->sample_aspect_ratio = av_d2q(frame_aspect_ratio*frame_height/frame_width, 25
[all...]
H A Dffplay.c232 static int frame_width = 0; variable
2382 ap->width = frame_width;
2927 if (av_parse_video_frame_size(&frame_width, &frame_height, arg) < 0) {
2931 if ((frame_width % 2) != 0 || (frame_height % 2) != 0) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/
H A Dffmpeg.c117 static int frame_width = 0; variable
2588 if ((frame_leftBand) >= frame_width){
2592 frame_width -= frame_leftBand;
2602 if ((frame_rightBand) >= frame_width){
2606 frame_width -= frame_rightBand;
2611 if (av_parse_video_frame_size(&frame_width, &frame_height, arg) < 0) {
2984 ap->width = frame_width + frame_padleft + frame_padright;
3083 frame_width = enc->width;
3095 frame_width >>= enc->lowres;
3222 st->sample_aspect_ratio = av_d2q(frame_aspect_ratio*frame_height/frame_width, 25
[all...]
H A Dffplay.c232 static int frame_width = 0; variable
2382 ap->width = frame_width;
2927 if (av_parse_video_frame_size(&frame_width, &frame_height, arg) < 0) {
2931 if ((frame_width % 2) != 0 || (frame_height % 2) != 0) {

Completed in 156 milliseconds