diff options
author | Baptiste Coudurier <baptiste.coudurier@smartjog.com> | 2006-03-02 01:37:38 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-03-02 01:37:38 +0000 |
commit | 1522767d0dba60cd62995542960fb9bba199edcf (patch) | |
tree | ca832b8d28166d065c743579c3a85e014ded6f57 /libavformat/movenc.c | |
parent | 289f999dab58bf96f588604df05cdfd623f69310 (diff) | |
download | ffmpeg-1522767d0dba60cd62995542960fb9bba199edcf.tar.gz |
compute output format before setting language patch by (Baptiste COUDURIER <baptiste.coudurier smartjog com)
Originally committed as revision 5093 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 45 |
1 files changed, 22 insertions, 23 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 59aa6cc60e..5a00971154 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -1389,6 +1389,27 @@ static int mov_write_header(AVFormatContext *s) MOVContext *mov = s->priv_data; int i; + /* Default mode == MP4 */ + mov->mode = MODE_MP4; + + if (s->oformat != NULL) { + if (!strcmp("3gp", s->oformat->name)) mov->mode = MODE_3GP; + else if (!strcmp("3g2", s->oformat->name)) mov->mode = MODE_3G2; + else if (!strcmp("mov", s->oformat->name)) mov->mode = MODE_MOV; + else if (!strcmp("psp", s->oformat->name)) mov->mode = MODE_PSP; + + if ( mov->mode == MODE_3GP || mov->mode == MODE_3G2 || + mov->mode == MODE_MP4 || mov->mode == MODE_PSP ) + mov_write_ftyp_tag(pb,s); + if ( mov->mode == MODE_PSP ) { + if ( s->nb_streams != 2 ) { + av_log(s, AV_LOG_ERROR, "PSP mode need one video and one audio stream\n"); + return -1; + } + mov_write_uuidprof_tag(pb,s); + } + } + for(i=0; i<s->nb_streams; i++){ AVCodecContext *c= s->streams[i]->codec; @@ -1409,29 +1430,7 @@ static int mov_write_header(AVFormatContext *s) av_log(s, AV_LOG_INFO, "Warning, using MS style audio codec tag, the file may be unplayable!\n"); } } - /* don't know yet if mp4 or not */ - mov->tracks[i].language = ff_mov_iso639_to_lang(s->streams[i]->language, 1); - } - - /* Default mode == MP4 */ - mov->mode = MODE_MP4; - - if (s->oformat != NULL) { - if (!strcmp("3gp", s->oformat->name)) mov->mode = MODE_3GP; - else if (!strcmp("3g2", s->oformat->name)) mov->mode = MODE_3G2; - else if (!strcmp("mov", s->oformat->name)) mov->mode = MODE_MOV; - else if (!strcmp("psp", s->oformat->name)) mov->mode = MODE_PSP; - - if ( mov->mode == MODE_3GP || mov->mode == MODE_3G2 || - mov->mode == MODE_MP4 || mov->mode == MODE_PSP ) - mov_write_ftyp_tag(pb,s); - if ( mov->mode == MODE_PSP ) { - if ( s->nb_streams != 2 ) { - av_log(s, AV_LOG_ERROR, "PSP mode need one video and one audio stream\n"); - return -1; - } - mov_write_uuidprof_tag(pb,s); - } + mov->tracks[i].language = ff_mov_iso639_to_lang(s->streams[i]->language, mov->mode != MODE_MOV); } for (i=0; i<MAX_STREAMS; i++) { |