Commit 2fdb2b54 authored by Tobias Bindhammer's avatar Tobias Bindhammer

Insert info from extradata into header

Originally committed as revision 24943 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9e906bb1
...@@ -45,12 +45,12 @@ static int a64_write_header(struct AVFormatContext *s) ...@@ -45,12 +45,12 @@ static int a64_write_header(struct AVFormatContext *s)
switch (avctx->codec->id) { switch (avctx->codec->id) {
case CODEC_ID_A64_MULTI: case CODEC_ID_A64_MULTI:
header[2] = 0x00; header[2] = 0x00;
header[3] = 4; header[3] = AV_RB32(avctx->extradata+0);
header[4] = 2; header[4] = 2;
break; break;
case CODEC_ID_A64_MULTI5: case CODEC_ID_A64_MULTI5:
header[2] = 0x01; header[2] = 0x01;
header[3] = 4; header[3] = AV_RB32(avctx->extradata+0);
header[4] = 3; header[4] = 3;
break; break;
default: default:
......
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