diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-06-20 06:05:45 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-06-22 17:36:37 -0700 |
commit | 7b9ef8d701c319c26f7d0664fe977e176764c74e (patch) | |
tree | 651afd8b680afd86e1aca7d6c89fe27514bb9d20 /libavcodec/mpeg_er.h | |
parent | f2f2e7627f0c878d13275af5d166ec5932665e28 (diff) | |
download | ffmpeg-7b9ef8d701c319c26f7d0664fe977e176764c74e.tar.gz |
mpeg: Split error resilience bits off into a separate file
Diffstat (limited to 'libavcodec/mpeg_er.h')
-rw-r--r-- | libavcodec/mpeg_er.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libavcodec/mpeg_er.h b/libavcodec/mpeg_er.h new file mode 100644 index 0000000000..19681843d7 --- /dev/null +++ b/libavcodec/mpeg_er.h @@ -0,0 +1,26 @@ +/* + * This file is part of Libav. + * + * Libav 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. + * + * Libav 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 Libav; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef AVCODEC_MPEG_ER_H +#define AVCODEC_MPEG_ER_H + +#include "mpegvideo.h" + +void ff_mpeg_er_frame_start(MpegEncContext *s); + +#endif /* AVCODEC_MPEG_ER_H */ |