Skip to content
Snippets Groups Projects
Commit cc326d2b authored by Baptiste Coudurier's avatar Baptiste Coudurier
Browse files

set gsm default frame size and bytes per frame, needed by old qt format, fix sample-gsm-8000.mov

Originally committed as revision 12950 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 07a47ae2
No related branches found
No related tags found
No related merge requests found
...@@ -856,6 +856,10 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) ...@@ -856,6 +856,10 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
sc->samples_per_frame = 64; sc->samples_per_frame = 64;
sc->bytes_per_frame = 34*st->codec->channels; sc->bytes_per_frame = 34*st->codec->channels;
break; break;
case CODEC_ID_GSM:
sc->samples_per_frame = 160;
sc->bytes_per_frame = 33;
break;
default: default:
break; break;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment