Re: [FFmpeg-devel] [PATCH v2] avformat/crypto.c: remove unnecessary code

2020-07-15 Thread Steven Liu
Tomas Härdin 于2020年7月14日周二 下午4:48写道: > > tis 2020-07-14 klockan 14:23 +0800 skrev Steven Liu: > > Because the newpos variable is set value before use it. > > The newpos variable declared at the head partition of crypto_seek. > > Make the code clean. > > > > Signed-off-by: Steven Liu > > --- > >

Re: [FFmpeg-devel] [PATCH v2] avformat/crypto.c: remove unnecessary code

2020-07-14 Thread Tomas Härdin
tis 2020-07-14 klockan 14:23 +0800 skrev Steven Liu: > Because the newpos variable is set value before use it. > The newpos variable declared at the head partition of crypto_seek. > Make the code clean. > > Signed-off-by: Steven Liu > --- > libavformat/crypto.c | 12 > 1 file change

[FFmpeg-devel] [PATCH v2] avformat/crypto.c: remove unnecessary code

2020-07-13 Thread Steven Liu
Because the newpos variable is set value before use it. The newpos variable declared at the head partition of crypto_seek. Make the code clean. Signed-off-by: Steven Liu --- libavformat/crypto.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/libavformat/crypto.c