10l (!= vs. >)

Originally committed as revision 4468 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Michael Niedermayer 20 years ago
parent d9dd7a0d2c
commit b5bc8591ee
  1. 2
      output_example.c

@ -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…
Cancel
Save