mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
10l (!= vs. >)
Originally committed as revision 4468 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
d9dd7a0d2c
commit
b5bc8591ee
@ -353,7 +353,7 @@ void write_video_frame(AVFormatContext *oc, AVStream *st)
|
||||
/* encode the image */
|
||||
out_size = avcodec_encode_video(c, video_outbuf, video_outbuf_size, picture);
|
||||
/* if zero size, it means the image was buffered */
|
||||
if (out_size != 0) {
|
||||
if (out_size > 0) {
|
||||
AVPacket pkt;
|
||||
av_init_packet(&pkt);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user