Questions tagged [mov]

Questions related to the assembler `mov` instruction

The assembler mov instruction loads an immediate value into an register or transfers data between register and register or register and memory. See:

296 questions
43
votes
1 answer

Difference between MOVDQA and MOVAPS x86 instructions?

I'm looking Intel datasheet: Intel® 64 and IA-32 Architectures Software Developer’s Manual and I can't find the difference between MOVDQA: Move Aligned Double Quadword MOVAPS: Move Aligned Packed Single-Precision In Intel datasheet I can find…
GJ.
  • 10,810
  • 2
  • 45
  • 62
32
votes
6 answers

MOVing between two memory addresses

I'm trying to learn assembly (so bear with me) and I'm getting a compile error on this line: mov byte [t_last], [t_cur] The error is error: invalid combination of opcode and operands I suspect that the cause of this error is simply that its not…
Justin
  • 84,773
  • 49
  • 224
  • 367
28
votes
6 answers

How can I get a frame sample (jpeg) from a video (mov)

I want to get a frame sample (jpeg) from a video file (mov) with java. Is there an easy way to do this. When I search in google all I can find is to make mov from multiple jpgs. I dont know maybe I cannot find the right keywords.
Nuri Tasdemir
  • 9,720
  • 3
  • 42
  • 67
25
votes
2 answers

Why is mov turing complete?

I found this recently: https://github.com/xoreaxeaxeax/movfuscator It seems to be contingent on the fact that mov is turing-complete. Is that true, and why?
schuelermine
  • 1,958
  • 2
  • 17
  • 31
23
votes
1 answer

Error "Transparency encoding with auto_alt_ref does not work" when converting a .mov with Alpha to .webm with alpha with ffmpeg

I am trying to convert a .mov file with alpha transparency into a .webm file and have been following this thread for help: Convert mov with Alpha to VP9 Webm with Alpha Using ffmpeg The command line I have been using is ffmpeg -r 24/1 -i…
ThomTTP
  • 945
  • 1
  • 6
  • 9
20
votes
2 answers

How does MOVSX assembly instruction work?

How does the assembly instruction MOVSX work in this following example: MOVSX ECX,BYTE PTR DS:[EDX] In this case, here are the state of the registers: ECX = 0000000F EDX = 0012FD9F From what I thought, it takes last bytes of [EDX] = 9F,…
Abundance
  • 1,963
  • 3
  • 24
  • 46
19
votes
1 answer

mov instruction in x86 assembly

From what I've read about mov, it copies the second argument into the first argument. Then, what does this do? movl 8(%ebp), %edx It copies whatever is in edx to the first parameter of the function (since an offset of +8 from ebp is a…
hut123
  • 445
  • 3
  • 7
  • 14
18
votes
1 answer

difference between conditional instructions (cmov) and jump instructions

I'm confused where to use cmov instructions and where to use jump instructions in assembly? From performance point of view: What is the difference in both of them? Which one is better? If possible, please explain their difference with an…
jigglypuff
  • 309
  • 1
  • 2
  • 8
18
votes
4 answers

How to support MOV(quick time) in android?

I want to play in .mov file in android. But videoview or mediaplayer doesn't support this meida format. How can i add the support to it?
Aaron
  • 1,274
  • 3
  • 14
  • 18
17
votes
1 answer

Convert from .mov to .mp4 (or h264) using avconv

Looking at the avconv website there seem to be a vast array of options to convert video. However, I'm getting lost in all the technical detail. Is there a simple way to convert a .mov to a .mp4 (or h264)? I'm happy if it's slightly lossy. If it…
Snowcrash
  • 80,579
  • 89
  • 266
  • 376
16
votes
1 answer

mov eax, large fs:30h

I was analyzing some x86 binary and found the following instruction which I can not understand. Can someone please explain me following instruction? mov eax, large fs:30h I googled this, and it turns out it is some anti-debugging stuff... but…
daehee
  • 5,047
  • 7
  • 44
  • 70
13
votes
2 answers

Anyone knows what "mov edi,edi " does?

69A8AB13 int 3 69A8AB14 int 3 69A8AB15 mov edi,edi 69A8AB17 push ebp 69A8AB18 mov ebp,esp mov edi,edi doesn't make sense for me,what's it for?
COMer
  • 1,117
  • 4
  • 14
  • 24
11
votes
1 answer

8085 assembly instructions MOV, LDA and STA

I get the point of MOV, STA and LDA instructions, but what I don't understand is why are there three different instructions for two different processes? STA is for copying data from accumulator to memory location, LDA is for copying data from…
Lucenzo97
  • 215
  • 1
  • 2
  • 7
11
votes
1 answer

Installing codecs for mov to mp4 conversion ffmpeg

I have been trying to convert a .mov file to a .mp4 file for a while now i think this is the correct code to do it. ffmpeg -i P1010989.MOV -vcodec copy -acodec copy out.mp4 But here is my output FFmpeg version 0.6.5, Copyright (c) 2000-2010 the…
user1503606
  • 3,872
  • 13
  • 44
  • 78
10
votes
1 answer

X86: What does `movsxd rdx,edx` instruction mean?

I have been playing with intel mpx and found that it adds certain instructions that I could not understand. For e.g. (in intel format): movsxd rdx,edx I found this, which talks about a similar instruction - MOVSX. From that question, my…
R4444
  • 2,016
  • 2
  • 19
  • 30
1
2 3
19 20