diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-20 05:19:19 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-20 05:19:46 +0200 |
commit | fcca7671e29b67812d29af710ff90486944ee428 (patch) | |
tree | 8b67f16bdcbb9f1d2de5c35a527271c36ad2a25f /libavcodec/canopus.h | |
parent | f1db984288f21a1ecdff0b5702630456c089ce36 (diff) | |
parent | e6fb844f7b736e72da364032d251283bce9e63ad (diff) | |
download | ffmpeg-fcca7671e29b67812d29af710ff90486944ee428.tar.gz |
Merge commit 'e6fb844f7b736e72da364032d251283bce9e63ad'
* commit 'e6fb844f7b736e72da364032d251283bce9e63ad':
Implement shared parsing of INFO tag in Canopus family
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/canopus.h')
-rw-r--r-- | libavcodec/canopus.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libavcodec/canopus.h b/libavcodec/canopus.h new file mode 100644 index 0000000000..faa1e8dfbf --- /dev/null +++ b/libavcodec/canopus.h @@ -0,0 +1,32 @@ +/* + * Canopus common routines + * Copyright (c) 2015 Vittorio Giovara <vittorio.giovara@gmail.com> + * + * 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 AVCODEC_CANOPUS_H +#define AVCODEC_CANOPUS_H + +#include <stdint.h> + +#include "avcodec.h" + +int ff_canopus_parse_info_tag(AVCodecContext *avctx, + const uint8_t *src, size_t size); + +#endif /* AVCODEC_CANOPUS_H */ |