aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/flacdec.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2013-07-09 02:39:09 -0300
committerMichael Niedermayer <michaelni@gmx.at>2013-07-09 19:19:42 +0200
commit1e5bbbfcf303ec3db0c7db30b85855e2e5358aec (patch)
tree235658c7b4406123f92242c576acc9cadccd3d76 /libavformat/flacdec.h
parentf9d7431272f41288a118799b0e843e98d8c4ea93 (diff)
downloadffmpeg-1e5bbbfcf303ec3db0c7db30b85855e2e5358aec.tar.gz
lavf/flacdec: Share the function to parse cover art blocks
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/flacdec.h')
-rw-r--r--libavformat/flacdec.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/libavformat/flacdec.h b/libavformat/flacdec.h
new file mode 100644
index 0000000000..dff0660311
--- /dev/null
+++ b/libavformat/flacdec.h
@@ -0,0 +1,31 @@
+/*
+ * Raw FLAC demuxer
+ * Copyright (c) 2001 Fabrice Bellard
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef AVFORMAT_FLACDEC_H
+#define AVFORMAT_FLACDEC_H
+
+#include "avformat.h"
+
+#define RETURN_ERROR(code) do { ret = (code); goto fail; } while (0)
+
+int ff_flac_parse_picture(AVFormatContext *s, uint8_t *buf, int buf_size);
+
+#endif /* AVFORMAT_FLACDEC_H */