[FFmpeg-cvslog] r23163 - in trunk/libavformat: movenc.c movenc.h
mstorsjo
subversion
Tue May 18 21:40:17 CEST 2010
Author: mstorsjo
Date: Tue May 18 21:40:17 2010
New Revision: 23163
Log:
Make mov_write_packet non-static, add ff_ prefix
Modified:
trunk/libavformat/movenc.c
trunk/libavformat/movenc.h
Modified: trunk/libavformat/movenc.c
==============================================================================
--- trunk/libavformat/movenc.c Tue May 18 21:38:37 2010 (r23162)
+++ trunk/libavformat/movenc.c Tue May 18 21:40:17 2010 (r23163)
@@ -1785,7 +1785,7 @@ static int mov_parse_mpeg2_frame(AVPacke
return 0;
}
-static int mov_write_packet(AVFormatContext *s, AVPacket *pkt)
+int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt)
{
MOVMuxContext *mov = s->priv_data;
ByteIOContext *pb = s->pb;
@@ -1910,7 +1910,7 @@ static void mov_create_chapter_track(AVF
pkt.data = av_malloc(pkt.size);
AV_WB16(pkt.data, len);
memcpy(pkt.data+2, t->value, len);
- mov_write_packet(s, &pkt);
+ ff_mov_write_packet(s, &pkt);
av_freep(&pkt.data);
}
}
@@ -2084,7 +2084,7 @@ AVOutputFormat mov_muxer = {
CODEC_ID_AAC,
CODEC_ID_MPEG4,
mov_write_header,
- mov_write_packet,
+ ff_mov_write_packet,
mov_write_trailer,
.flags = AVFMT_GLOBALHEADER | AVFMT_VARIABLE_FPS,
.codec_tag = (const AVCodecTag* const []){codec_movvideo_tags, codec_movaudio_tags, 0},
@@ -2100,7 +2100,7 @@ AVOutputFormat tgp_muxer = {
CODEC_ID_AMR_NB,
CODEC_ID_H263,
mov_write_header,
- mov_write_packet,
+ ff_mov_write_packet,
mov_write_trailer,
.flags = AVFMT_GLOBALHEADER,
.codec_tag = (const AVCodecTag* const []){codec_3gp_tags, 0},
@@ -2116,7 +2116,7 @@ AVOutputFormat mp4_muxer = {
CODEC_ID_AAC,
CODEC_ID_MPEG4,
mov_write_header,
- mov_write_packet,
+ ff_mov_write_packet,
mov_write_trailer,
.flags = AVFMT_GLOBALHEADER | AVFMT_VARIABLE_FPS,
.codec_tag = (const AVCodecTag* const []){ff_mp4_obj_type, 0},
@@ -2132,7 +2132,7 @@ AVOutputFormat psp_muxer = {
CODEC_ID_AAC,
CODEC_ID_MPEG4,
mov_write_header,
- mov_write_packet,
+ ff_mov_write_packet,
mov_write_trailer,
.flags = AVFMT_GLOBALHEADER,
.codec_tag = (const AVCodecTag* const []){ff_mp4_obj_type, 0},
@@ -2148,7 +2148,7 @@ AVOutputFormat tg2_muxer = {
CODEC_ID_AMR_NB,
CODEC_ID_H263,
mov_write_header,
- mov_write_packet,
+ ff_mov_write_packet,
mov_write_trailer,
.flags = AVFMT_GLOBALHEADER,
.codec_tag = (const AVCodecTag* const []){codec_3gp_tags, 0},
@@ -2164,7 +2164,7 @@ AVOutputFormat ipod_muxer = {
CODEC_ID_AAC,
CODEC_ID_H264,
mov_write_header,
- mov_write_packet,
+ ff_mov_write_packet,
mov_write_trailer,
.flags = AVFMT_GLOBALHEADER,
.codec_tag = (const AVCodecTag* const []){codec_ipod_tags, 0},
Modified: trunk/libavformat/movenc.h
==============================================================================
--- trunk/libavformat/movenc.h Tue May 18 21:38:37 2010 (r23162)
+++ trunk/libavformat/movenc.h Tue May 18 21:40:17 2010 (r23163)
@@ -85,4 +85,6 @@ typedef struct MOVMuxContext {
MOVTrack *tracks;
} MOVMuxContext;
+int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt);
+
#endif /* AVFORMAT_MOVENC_H */
More information about the ffmpeg-cvslog
mailing list