Commit 5a237c33 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavf/asfdec_f: Remove CR/LF from avpriv_request_sample() call.

parent a8cb567e
...@@ -1010,7 +1010,7 @@ static int asf_get_packet(AVFormatContext *s, AVIOContext *pb) ...@@ -1010,7 +1010,7 @@ static int asf_get_packet(AVFormatContext *s, AVIOContext *pb)
} }
if (c != 0x82) if (c != 0x82)
avpriv_request_sample(s, "Invalid ECC byte\n"); avpriv_request_sample(s, "Invalid ECC byte");
if (!asf->uses_std_ecc) if (!asf->uses_std_ecc)
asf->uses_std_ecc = (c == 0x82 && !d && !e) ? 1 : -1; asf->uses_std_ecc = (c == 0x82 && !d && !e) ? 1 : -1;
......
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