]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/mlp.h
add AltiVec implementation of weight_h264_pixels(16|8)x(16|8|4)
[ffmpeg] / libavcodec / mlp.h
index a434cd1a229935d5442d7e1ca647c854edd153ff..b81c735d1fc1b4596753b789b39f97b7f6206dc2 100644 (file)
@@ -19,8 +19,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#ifndef FFMPEG_MLP_H
-#define FFMPEG_MLP_H
+#ifndef AVCODEC_MLP_H
+#define AVCODEC_MLP_H
 
 #include <stdint.h>
 
@@ -56,6 +56,9 @@
 */
 #define MAX_FILTER_ORDER    8
 
+/** Code that signals end of a stream. */
+#define END_OF_STREAM       0xd234d234
+
 #define FIR 0
 #define IIR 1
 
@@ -103,8 +106,6 @@ uint8_t ff_mlp_restart_checksum(const uint8_t *buf, unsigned int bit_size);
  */
 uint8_t ff_mlp_calculate_parity(const uint8_t *buf, unsigned int buf_size);
 
-int ff_mlp_init_crc2D(AVCodecParserContext *s);
-
 void ff_mlp_init_crc();
 
 /** XOR four bytes into one. */
@@ -115,4 +116,4 @@ static inline uint8_t xor_32_to_8(uint32_t value)
     return value;
 }
 
-#endif /* FFMPEG_MLP_H */
+#endif /* AVCODEC_MLP_H */