]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/rtpenc_h264.c
Rename av_tempfile() to ff_tempfile()
[ffmpeg] / libavformat / rtpenc_h264.c
index 26bd4a96a9c7ed5af054f066f6c4a857dac6d930..697def61c2fdc9554a810afb9de899a51a151015 100644 (file)
@@ -20,7 +20,7 @@
  */
 
 /**
- * @file libavformat/rtpenc_h264.c
+ * @file
  * @brief H.264 packetization
  * @author Luca Abeni <lucabe72@email.it>
  */
@@ -56,7 +56,7 @@ static void nal_send(AVFormatContext *s1, const uint8_t *buf, int size, int last
         }
         s->buf[1] |= 1 << 6;
         memcpy(&s->buf[2], buf, size);
-        ff_rtp_send_data(s1, s->buf, size + 2, 1);
+        ff_rtp_send_data(s1, s->buf, size + 2, last);
     }
 }