]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/ivfenc.c
bfin: hpeldsp: Split no_rnd pixel operations off into a separate file
[ffmpeg] / libavformat / ivfenc.c
index 560ec9a0e32a5c587b701ebad7a337b0dc556df0..3cd16166c7d24665614a85b2af87f876c271c87a 100644 (file)
@@ -30,7 +30,7 @@ static int ivf_write_header(AVFormatContext *s)
         return AVERROR(EINVAL);
     }
     ctx = s->streams[0]->codec;
-    if (ctx->codec_type != AVMEDIA_TYPE_VIDEO || ctx->codec_id != CODEC_ID_VP8) {
+    if (ctx->codec_type != AVMEDIA_TYPE_VIDEO || ctx->codec_id != AV_CODEC_ID_VP8) {
         av_log(s, AV_LOG_ERROR, "Currently only VP8 is supported!\n");
         return AVERROR(EINVAL);
     }
@@ -53,7 +53,6 @@ static int ivf_write_packet(AVFormatContext *s, AVPacket *pkt)
     avio_wl32(pb, pkt->size);
     avio_wl64(pb, pkt->pts);
     avio_write(pb, pkt->data, pkt->size);
-    avio_flush(pb);
 
     return 0;
 }
@@ -62,8 +61,8 @@ AVOutputFormat ff_ivf_muxer = {
     .name         = "ivf",
     .long_name    = NULL_IF_CONFIG_SMALL("On2 IVF"),
     .extensions   = "ivf",
-    .audio_codec  = CODEC_ID_NONE,
-    .video_codec  = CODEC_ID_VP8,
+    .audio_codec  = AV_CODEC_ID_NONE,
+    .video_codec  = AV_CODEC_ID_VP8,
     .write_header = ivf_write_header,
     .write_packet = ivf_write_packet,
 };