diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-01-22 10:56:42 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-27 10:38:34 +0100 |
commit | d2d931500b24900dcff2527b94ce0dfc36f9d6f2 (patch) | |
tree | 43c076f004788daa4bf66740cb275a00d1fa8799 /libavcodec/utils.c | |
parent | ec104eef51d16974f7d90dfb2ab705df3f47e6bb (diff) | |
download | ffmpeg-d2d931500b24900dcff2527b94ce0dfc36f9d6f2.tar.gz |
lavc: remove disabled FF_API_AVCODEC_OPEN cruft.
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 2101df145d..6236f79831 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -625,13 +625,6 @@ AVFrame *avcodec_alloc_frame(void){ return pic; } -#if FF_API_AVCODEC_OPEN -int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec) -{ - return avcodec_open2(avctx, codec, NULL); -} -#endif - int attribute_align_arg avcodec_open2(AVCodecContext *avctx, AVCodec *codec, AVDictionary **options) { int ret = 0; |