changeset 3836:778af58056b6 libavformat

cosmetics, mux_write -> mxf_write
author bcoudurier
date Sun, 31 Aug 2008 02:50:25 +0000
parents b60bdaa5a202
children cbcb37ccda1e
files mxfenc.c
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/mxfenc.c	Sun Aug 31 02:49:40 2008 +0000
+++ b/mxfenc.c	Sun Aug 31 02:50:25 2008 +0000
@@ -751,7 +751,7 @@
     return NULL;
 }
 
-static int mux_write_header(AVFormatContext *s)
+static int mxf_write_header(AVFormatContext *s)
 {
     MXFContext *mxf = s->priv_data;
     ByteIOContext *pb = s->pb;
@@ -826,7 +826,7 @@
     return -1;
 }
 
-static int mux_write_packet(AVFormatContext *s, AVPacket *pkt)
+static int mxf_write_packet(AVFormatContext *s, AVPacket *pkt)
 {
     ByteIOContext *pb = s->pb;
     AVStream *st = s->streams[pkt->stream_index];
@@ -853,7 +853,7 @@
 }
 
 
-static int mux_write_footer(AVFormatContext *s)
+static int mxf_write_footer(AVFormatContext *s)
 {
     ByteIOContext *pb = s->pb;
     int64_t byte_position= url_ftell(pb);
@@ -875,9 +875,9 @@
     sizeof(MXFContext),
     CODEC_ID_PCM_S16LE,
     CODEC_ID_MPEG2VIDEO,
-    mux_write_header,
-    mux_write_packet,
-    mux_write_footer,
+    mxf_write_header,
+    mxf_write_packet,
+    mxf_write_footer,
 };