diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 04:42:39 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 04:42:39 +0000 |
commit | eb52376915cb518220264962fdbcf22418e790bb (patch) | |
tree | 5e07c6c7a1bdc1e6a73d74b8cfbc8d04c106ba34 /libavcodec/flv.h | |
parent | f867378771e60f5acb63d90a9c8020ea76e1500d (diff) | |
download | ffmpeg-eb52376915cb518220264962fdbcf22418e790bb.tar.gz |
Split out flv encoding.
Originally committed as revision 21050 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flv.h')
-rw-r--r-- | libavcodec/flv.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libavcodec/flv.h b/libavcodec/flv.h new file mode 100644 index 0000000000..848c92df98 --- /dev/null +++ b/libavcodec/flv.h @@ -0,0 +1,27 @@ +/* + * FLV specific private header. + * 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_FLV_H +#define AVCODEC_FLV_H + +void ff_flv_encode_picture_header(MpegEncContext * s, int picture_number); +void ff_flv2_encode_ac_esc(PutBitContext *pb, int slevel, int level, int run, int last); + +#endif + |