]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/utvideo.h
avfilter/avfilter: Remove compatibility code for old filter options
[ffmpeg] / libavcodec / utvideo.h
index cf0bb28c44e10339a8b5925097a109bce30ec394..9da9329ff3387451edccf20f60dddbbb044619c2 100644 (file)
@@ -61,9 +61,6 @@ enum {
     UTVIDEO_444  = MKTAG('Y', 'V', '2', '4'),
 };
 
-/* Mapping of libavcodec prediction modes to Ut Video's */
-extern const int ff_ut_pred_order[5];
-
 typedef struct UtvideoContext {
     const AVClass *class;
     AVCodecContext *avctx;
@@ -91,14 +88,4 @@ typedef struct UtvideoContext {
     size_t control_stream_size[4][256];
 } UtvideoContext;
 
-typedef struct HuffEntry {
-    uint16_t sym;
-    uint8_t  len;
-    uint32_t code;
-} HuffEntry;
-
-/* Compare huffman tree nodes */
-int ff_ut_huff_cmp_len(const void *a, const void *b);
-int ff_ut10_huff_cmp_len(const void *a, const void *b);
-
 #endif /* AVCODEC_UTVIDEO_H */