mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-03 05:10:03 +02:00
avcodec/ituh263enc: Use stack variable for aspect_ratio_info
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
b326c2dcdc
commit
f2da650258
@ -193,13 +193,13 @@ void ff_h263_encode_picture_header(MpegEncContext * s, int picture_number)
|
|||||||
|
|
||||||
if (format == 8) {
|
if (format == 8) {
|
||||||
/* Custom Picture Format (CPFMT) */
|
/* Custom Picture Format (CPFMT) */
|
||||||
s->aspect_ratio_info= ff_h263_aspect_to_info(s->avctx->sample_aspect_ratio);
|
unsigned aspect_ratio_info = ff_h263_aspect_to_info(s->avctx->sample_aspect_ratio);
|
||||||
|
|
||||||
put_bits(&s->pb,4,s->aspect_ratio_info);
|
put_bits(&s->pb,4, aspect_ratio_info);
|
||||||
put_bits(&s->pb,9,(s->width >> 2) - 1);
|
put_bits(&s->pb,9,(s->width >> 2) - 1);
|
||||||
put_bits(&s->pb,1,1); /* "1" to prevent start code emulation */
|
put_bits(&s->pb,1,1); /* "1" to prevent start code emulation */
|
||||||
put_bits(&s->pb,9,(s->height >> 2));
|
put_bits(&s->pb,9,(s->height >> 2));
|
||||||
if (s->aspect_ratio_info == FF_ASPECT_EXTENDED){
|
if (aspect_ratio_info == FF_ASPECT_EXTENDED){
|
||||||
put_bits(&s->pb, 8, s->avctx->sample_aspect_ratio.num);
|
put_bits(&s->pb, 8, s->avctx->sample_aspect_ratio.num);
|
||||||
put_bits(&s->pb, 8, s->avctx->sample_aspect_ratio.den);
|
put_bits(&s->pb, 8, s->avctx->sample_aspect_ratio.den);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user