[FFmpeg-cvslog] r23236 - in branches/0.6: . libavformat/movenc.c libavformat/movenc.h
mstorsjo
subversion
Fri May 21 23:45:54 CEST 2010
Author: mstorsjo
Date: Fri May 21 23:45:54 2010
New Revision: 23236
Log:
Make mov_write_packet non-static, add ff_ prefix
backport r23163 by mstorsjo
Modified:
branches/0.6/ (props changed)
branches/0.6/libavformat/movenc.c
branches/0.6/libavformat/movenc.h
Modified: branches/0.6/libavformat/movenc.c
==============================================================================
--- branches/0.6/libavformat/movenc.c Fri May 21 23:45:21 2010 (r23235)
+++ branches/0.6/libavformat/movenc.c Fri May 21 23:45:54 2010 (r23236)
@@ -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: branches/0.6/libavformat/movenc.h
==============================================================================
--- branches/0.6/libavformat/movenc.h Fri May 21 23:45:21 2010 (r23235)
+++ branches/0.6/libavformat/movenc.h Fri May 21 23:45:54 2010 (r23236)
@@ -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