mirror of https://git.ffmpeg.org/ffmpeg.git
gxfenc: dont duplicate buffer size
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
7992814920
commit
eb336cb881
|
@ -205,7 +205,7 @@ static int gxf_write_mpeg_auxiliary(AVIOContext *pb, AVStream *st)
|
|||
else
|
||||
starting_line = 23; // default PAL
|
||||
|
||||
size = snprintf(buffer, 1024, "Ver 1\nBr %.6f\nIpg 1\nPpi %d\nBpiop %d\n"
|
||||
size = snprintf(buffer, sizeof(buffer), "Ver 1\nBr %.6f\nIpg 1\nPpi %d\nBpiop %d\n"
|
||||
"Pix 0\nCf %d\nCg %d\nSl %d\nnl16 %d\nVi 1\nf1 1\n",
|
||||
(float)st->codec->bit_rate, sc->p_per_gop, sc->b_per_i_or_p,
|
||||
st->codec->pix_fmt == PIX_FMT_YUV422P ? 2 : 1, sc->first_gop_closed == 1,
|
||||
|
|
Loading…
Reference in New Issue