diff options
author | Zhentan Feng <spyfeng@gmail.com> | 2010-08-13 17:02:37 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-08-13 17:02:37 +0000 |
commit | 99ab8ff049ebbd2807a69ca2154a72bface51c2e (patch) | |
tree | 033c558b7dcfd66a1927d0143100b6235bb4b3b9 /libavformat | |
parent | 2b476e02e1c306042e82cd16dab12fcc80034a05 (diff) | |
download | ffmpeg-99ab8ff049ebbd2807a69ca2154a72bface51c2e.tar.gz |
Fix wrong command prefix for timing test in MMST protocol.
Patch by Zhentan Feng <spyfeng gmail com>.
Originally committed as revision 24792 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mmst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mmst.c b/libavformat/mmst.c index e4aea48f98..ccfc212b1f 100644 --- a/libavformat/mmst.c +++ b/libavformat/mmst.c @@ -166,7 +166,7 @@ static void mms_put_utf16(MMSContext *mms, uint8_t *src) static int send_time_test_data(MMSTContext *mmst) { start_command_packet(mmst, CS_PKT_TIMING_DATA_REQUEST); - insert_command_prefixes(&mmst->mms, 0xf0f0f0f1, 0x0004000b); + insert_command_prefixes(&mmst->mms, 0x00f0f0f0, 0x0004000b); return send_command_packet(mmst); } |