Mercurial > libavformat.hg
changeset 6486:fed4be333771 libavformat
Move AVOptions from libavcodec to libavutil
author | michael |
---|---|
date | Sun, 26 Sep 2010 14:25:22 +0000 |
parents | 74295564eed0 |
children | 3d0c78997acc |
files | avio.c http.c options.c utils.c |
diffstat | 4 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/avio.c Sun Sep 26 13:56:50 2010 +0000 +++ b/avio.c Sun Sep 26 14:25:22 2010 +0000 @@ -23,7 +23,7 @@ #define _XOPEN_SOURCE 600 #include <unistd.h> #include "libavutil/avstring.h" -#include "libavcodec/opt.h" +#include "libavutil/opt.h" #include "os_support.h" #include "avformat.h" #if CONFIG_NETWORK
--- a/http.c Sun Sep 26 13:56:50 2010 +0000 +++ b/http.c Sun Sep 26 14:25:22 2010 +0000 @@ -28,7 +28,7 @@ #include "http.h" #include "os_support.h" #include "httpauth.h" -#include "libavcodec/opt.h" +#include "libavutil/opt.h" /* XXX: POST protocol is not completely implemented because ffmpeg uses only a subset of it. */
--- a/options.c Sun Sep 26 13:56:50 2010 +0000 +++ b/options.c Sun Sep 26 14:25:22 2010 +0000 @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "avformat.h" -#include "libavcodec/opt.h" +#include "libavutil/opt.h" /** * @file
--- a/utils.c Sun Sep 26 13:56:50 2010 +0000 +++ b/utils.c Sun Sep 26 14:25:22 2010 +0000 @@ -21,7 +21,7 @@ #include "avformat.h" #include "internal.h" #include "libavcodec/internal.h" -#include "libavcodec/opt.h" +#include "libavutil/opt.h" #include "metadata.h" #include "libavutil/avstring.h" #include "riff.h"