This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Fix incorrect use of ff_get_fourcc that made mjpgb not play on big endian.
Fixes bug 739. Originally committed as revision 7875 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Reimar Döffinger
19 years ago
parent
3160138fc2
commit
5959a29893
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/mjpeg.c
+ 1
- 1
libavcodec/mjpeg.c
View File
@@ -2249,7 +2249,7 @@ read_header:
skip_bits(&hgb, 32); /* reserved zeros */
if (get_bits_long(&hgb, 32) !=
be2me_32(ff_get_fourcc("mjpg")
))
if (get_bits_long(&hgb, 32) !=
MKBETAG('m','j','p','g'
))
{
dprintf("not mjpeg-b (bad fourcc)\n");
return 0;
Write
Preview
Loading…
Cancel
Save