Commit 0353cb3a authored by kostya's avatar kostya

Rename flag for consistency with the next commit

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10100 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 189ad6c9
......@@ -27,7 +27,7 @@
* WavPack lossless audio decoder
*/
#define WV_JOINT 0x0010
#define WV_JOINT_STEREO 0x00000010
enum WP_ID_Flags{
WP_IDF_MASK = 0x1F,
......@@ -398,7 +398,7 @@ static int wavpack_decode_frame(AVCodecContext *avctx,
av_log(avctx, AV_LOG_ERROR, "Packet size is too big to be handled in lavc!\n");
return -1;
}
s->joint = AV_RL32(buf) & WV_JOINT; buf += 4;
s->joint = AV_RL32(buf) & WV_JOINT_STEREO; buf += 4;
s->CRC = AV_RL32(buf); buf += 4;
// parse metadata blocks
while(buf < buf_end){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment