1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

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
This commit is contained in:
Zhentan Feng 2010-08-13 17:02:37 +00:00 committed by Ronald S. Bultje
parent 2b476e02e1
commit 99ab8ff049

View File

@ -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);
}