examples/decoding_encoding: remove unused variable "size"
Remove unused variable size from video_encode_example() function. Fix GCC warning: decoding_encoding.c:214:22: warning: unused variable ‘size’ [-Wunused-variable]
This commit is contained in:
parent
162e400464
commit
e21dac3a4f
@ -211,7 +211,7 @@ static void video_encode_example(const char *filename, int codec_id)
|
|||||||
{
|
{
|
||||||
AVCodec *codec;
|
AVCodec *codec;
|
||||||
AVCodecContext *c= NULL;
|
AVCodecContext *c= NULL;
|
||||||
int i, out_size, size, x, y, outbuf_size;
|
int i, out_size, x, y, outbuf_size;
|
||||||
FILE *f;
|
FILE *f;
|
||||||
AVFrame *picture;
|
AVFrame *picture;
|
||||||
uint8_t *outbuf;
|
uint8_t *outbuf;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user