comparison mlpdec.c @ 12024:fdafbcef52f5 libavcodec

Fix grammar errors in documentation
author mru
date Wed, 30 Jun 2010 15:38:06 +0000
parents b57e32bcaa86
children
comparison
equal deleted inserted replaced
12023:c7455450364d 12024:fdafbcef52f5
937 return output_data_internal(m, substr, data, data_size, 0); 937 return output_data_internal(m, substr, data, data_size, 0);
938 } 938 }
939 939
940 940
941 /** Read an access unit from the stream. 941 /** Read an access unit from the stream.
942 * Returns < 0 on error, 0 if not enough data is present in the input stream 942 * @return negative on error, 0 if not enough data is present in the input stream,
943 * otherwise returns the number of bytes consumed. */ 943 * otherwise the number of bytes consumed. */
944 944
945 static int read_access_unit(AVCodecContext *avctx, void* data, int *data_size, 945 static int read_access_unit(AVCodecContext *avctx, void* data, int *data_size,
946 AVPacket *avpkt) 946 AVPacket *avpkt)
947 { 947 {
948 const uint8_t *buf = avpkt->data; 948 const uint8_t *buf = avpkt->data;