summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-03-07 09:50:05 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-03-07 09:50:05 +0000
commit54cc9c46e63a7f23178706bac624c27b39750dfb (patch)
treed0f674ed6a844c1e939d4540ec7896ad5df04cb3 /ffmpeg.c
parent8e532e681e5658ae7c7f9a5fa4c21d614f4b7b6b (diff)
set defaults based on CodecType by using avcodec_get_context_defaults2()
Originally committed as revision 8285 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index a7ec8c6144..d43ee168e8 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2696,6 +2696,7 @@ static void new_video_stream(AVFormatContext *oc)
fprintf(stderr, "Could not alloc stream\n");
exit(1);
}
+ avcodec_get_context_defaults2(st->codec, CODEC_TYPE_VIDEO);
bitstream_filters[nb_output_files][oc->nb_streams - 1]= video_bitstream_filters;
video_bitstream_filters= NULL;
@@ -2854,6 +2855,7 @@ static void new_audio_stream(AVFormatContext *oc)
fprintf(stderr, "Could not alloc stream\n");
exit(1);
}
+ avcodec_get_context_defaults2(st->codec, CODEC_TYPE_AUDIO);
bitstream_filters[nb_output_files][oc->nb_streams - 1]= audio_bitstream_filters;
audio_bitstream_filters= NULL;
@@ -2930,6 +2932,7 @@ static void opt_new_subtitle_stream(void)
fprintf(stderr, "Could not alloc stream\n");
exit(1);
}
+ avcodec_get_context_defaults2(st->codec, CODEC_TYPE_SUBTITLE);
subtitle_enc = st->codec;
subtitle_enc->codec_type = CODEC_TYPE_SUBTITLE;
@@ -3755,8 +3758,9 @@ int main(int argc, char **argv)
av_register_all();
- for(i=0; i<CODEC_TYPE_NB; i++)
- avctx_opts[i]= avcodec_alloc_context();
+ for(i=0; i<CODEC_TYPE_NB; i++){
+ avctx_opts[i]= avcodec_alloc_context2(i);
+ }
avformat_opts = av_alloc_format_context();
if (argc <= 1)