view libavcodec/h264_nal.h @ 8:6c1433f5a562

remove need for end_thread()
author Nina Engelhardt <nengel@mailbox.tu-berlin.de>
date Fri, 17 May 2013 17:50:05 +0200
parents
children
line source
1 #ifndef H264_NAL_H
2 #define H264_NAL_H
4 #include "avcodec.h"
5 #include "h264_types.h"
7 int decode_nal_units(NalContext *n, H264Slice *s, GetBitContext *gb);
8 NalContext *get_nal_context(int width, int height);
9 void free_nal_context(NalContext *nc);
11 #endif