summaryrefslogtreecommitdiffstats
path: root/video/image_writer.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-11-09 01:06:43 +0100
committerwm4 <wm4@nowhere>2012-11-12 20:08:18 +0100
commit4873b32c5959c988af1769529ff72e3fd62fba82 (patch)
treee18fbd7eef54de6071969689aa5c31d6ea1f0963 /video/image_writer.c
parentd4bdd0473d6f43132257c9fb3848d829755167a3 (diff)
downloadmpv-4873b32c5959c988af1769529ff72e3fd62fba82.tar.bz2
mpv-4873b32c5959c988af1769529ff72e3fd62fba82.tar.xz
Rename directories, move files (step 2 of 2)
Finish renaming directories and moving files. Adjust all include statements to make the previous commit compile. The two commits are separate, because git is bad at tracking renames and content changes at the same time. Also take this as an opportunity to remove the separation between "common" and "mplayer" sources in the Makefile. ("common" used to be shared between mplayer and mencoder.)
Diffstat (limited to 'video/image_writer.c')
-rw-r--r--video/image_writer.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/video/image_writer.c b/video/image_writer.c
index 877c89e700..9f4ca4d2b1 100644
--- a/video/image_writer.c
+++ b/video/image_writer.c
@@ -22,6 +22,7 @@
#include <libswscale/swscale.h>
#include <libavcodec/avcodec.h>
+#include <libavutil/mem.h>
#include "config.h"
@@ -33,16 +34,14 @@
#include "image_writer.h"
#include "talloc.h"
-#include "libmpcodecs/img_format.h"
-#include "libmpcodecs/mp_image.h"
-#include "libmpcodecs/dec_video.h"
-#include "libmpcodecs/vf.h"
-#include "fmt-conversion.h"
+#include "video/img_format.h"
+#include "video/mp_image.h"
+#include "video/fmt-conversion.h"
-#include "libmpcodecs/sws_utils.h"
-#include "libmpcodecs/vf.h"
+#include "video/sws_utils.h"
+#include "video/filter/vf.h"
-#include "m_option.h"
+#include "core/m_option.h"
const struct image_writer_opts image_writer_opts_defaults = {
.format = "jpg",