comparison flvdec.c @ 10828:d0657e337f91 libavcodec

Split H263 encoder and decoder from common code.
author michael
date Sat, 09 Jan 2010 14:59:06 +0000
parents 145b62a1de1c
children 8a4984c5cacc
comparison
equal deleted inserted replaced
10827:3d011a01a6a0 10828:d0657e337f91
16 * License along with FFmpeg; if not, write to the Free Software 16 * License along with FFmpeg; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */ 18 */
19 19
20 #include "mpegvideo.h" 20 #include "mpegvideo.h"
21 #include "h263.h"
21 #include "flv.h" 22 #include "flv.h"
22 23
23 void ff_flv2_decode_ac_esc(GetBitContext *gb, int *level, int *run, int *last){ 24 void ff_flv2_decode_ac_esc(GetBitContext *gb, int *level, int *run, int *last){
24 int is11 = get_bits1(gb); 25 int is11 = get_bits1(gb);
25 *last = get_bits1(gb); 26 *last = get_bits1(gb);