diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-08 08:27:26 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-08 08:27:26 +0000 |
commit | 8e2fd8e1d424f3dda8b1966733a32c3842008896 (patch) | |
tree | d74f6902e7fb46134dd140744b5f25af9e557a1d /ffplay.c | |
parent | 88a2896520f667461e7e9ef089d17954fe4ff1d2 (diff) | |
download | ffmpeg-8e2fd8e1d424f3dda8b1966733a32c3842008896.tar.gz |
Replace the calls to the deprecated av_alloc_format_context() with
corresponding calls to avformat_alloc_context().
Originally committed as revision 17048 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2554,7 +2554,7 @@ int main(int argc, char **argv) for(i=0; i<CODEC_TYPE_NB; i++){ avctx_opts[i]= avcodec_alloc_context2(i); } - avformat_opts = av_alloc_format_context(); + avformat_opts = avformat_alloc_context(); sws_opts = sws_getContext(16,16,0, 16,16,0, sws_flags, NULL,NULL,NULL); show_banner(); |