Commit b5bc8591 authored by Michael Niedermayer's avatar Michael Niedermayer

10l (!= vs. >)

Originally committed as revision 4468 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d9dd7a0d
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment